;the "Format | Paragraph..." menu command, the "More" button, the "Borders & Shading..." menu command

object BorderForm: TBorderForm
  Caption = 'Bordes y sombreado de párrafo'
  ClientHeight = 272
  ClientWidth = 374
  object BorderWidthLbl: TLabel
    Left = 13
    Top = 18
    Caption = 'Ancho del borde a &aplicar:'
  end
  object BorderWidthCmbBx: TComboBox
    Left = 13
    Top = 35
    Width = 155
    Height = 34
    Style = csOwnerDrawFixed
    ItemHeight = 28
    OnDrawItem = BorderWidthCmbBxDrawItem
  end
  object BorderColorLbl: TLabel
    Left = 13
    Top = 85
    Caption = '&Color del borde a aplicar:'
  end
  object BorderColorCmbBx: TColorPalComboBox
    Left = 13
    Top = 102
    Width = 155
  end
  object BorderLbl: TLabel
    Left = 182
    Top = 18
    Caption = 'Haga clic abajo para aplicar bordes:'
  end
  object PaintBox: TPaintBox
    Left = 182
    Top = 35
    Width = 176
    Height = 145
    OnClick = ControlChange
    OnMouseDown = PaintBoxMouseDown
    OnMouseMove = PaintBoxMouseMove
    OnMouseUp = PaintBoxMouseUp
    OnPaint = PaintBoxPaint
  end
  object SpaceBtn: TButton
    Left = 13
    Top = 158
    Width = 155
    Caption = 'Espaciado del borde...'
    OnClick = ControlChange
  end
  object ShadingLbl: TLabel
    Left = 13
    Top = 225
    Caption = 'Sombreado:'
  end
  object ShadingCmbBox: TColorPalComboBox
    Left = 13
    Top = 242
    Width = 155
    OnChange = ControlChange
  end
end