;the "Insert | Horizontal Line..." menu command

object HRForm: THRForm
  Caption = 'Línea horizontal'
  ClientHeight = 262
  ClientWidth = 361
  object WLbl: TLabel
    Left = 10
    Top = 20
    Caption = '&Ancho:'
  end
  object WEdt: TUpDownEdit
    Left = 57
    Top = 16
    Width = 60
    OnValChange = ControlChange
  end
  object WLbl2: TLabel
    Left = 170
    Top = 20
    Caption = '&Medida en:'
  end
  object WCmbBx: TComboBox
    Left = 238
    Top = 16
    Width = 115
    Style = csDropDownList
    OnChange = ControlChange
  end
  object HLbl: TLabel
    Left = 10
    Top = 75
    Caption = 'A&ltura:'
  end
  object HEdt: TUpDownEdit
    Left = 57
    Top = 71
    Width = 60
    OnValChange = ControlChange
  end
  object ColorLbl: TLabel
    Left = 170
    Top = 75
    Caption = 'C&olor:'
  end
  object ColorBox: TColorPalComboBox
    Left = 238
    Top = 71
    Width = 115
    OnChange = ControlChange
  end
  object AlignLbl: TLabel
    Left = 10
    Top = 130
    Caption = 'Alineación:'
  end
  object LBtn: TRadioButton
    Left = 95
    Top = 129
    Caption = '&izquierda'
    OnClick = ControlChange
  end
  object CBtn: TRadioButton
    Left = 170
    Top = 129
    Caption = '&centro'
    OnClick = ControlChange
  end
  object RBtn: TRadioButton
    Left = 245
    Top = 129
    Caption = '&derecha'
    OnClick = ControlChange
  end
  object Bevel: TBevel
    Left = 10
    Top = 165
    Width = 341
    Height = 2
  end
  object OmitBox: TCheckBox
    Left = 12
    Top = 179
    Caption = '&No mostrar este cuadro de diálogo para crear líneas horizontales.'#13'Utilizar automáticamente el formato predeterminado.'
    OnClick = ControlChange
  end
  object DefBtn: TButton
    Left = 8
    Top = 232
    Width = 100
    Caption = '&Predeterminado...'
  end
end