;the "File | Page Settings..." menu command, the "Layout" tab, the Line Numbers..." button

object LineNumForm: TLineNumForm
  Caption = 'Numeración de líneas'
  ClientHeight = 297
  ClientWidth = 230
  object EnableChkBx: TCheckBox
    Left = 20
    Top = 20
    Width = 140
    Caption = 'Activar &numeración de líneas'
    OnClick = ControlChange
  end
  object StartAtLbl: TLabel
    Left = 20
    Top = 65
    Caption = 'Comenzar &en:'
  end
  object StartEdt: TUpDownEdit
    Left = 122
    Top = 62
    SepDigits = 0
    OnValChange = ControlChange
    Increment = 1
  end
  object DistLbl: TLabel
    Left = 20
    Top = 95
    Caption = 'Distancia del &texto:'
  end
  object DistEdt: TUpDownEdit
    Left = 122
    Top = 92
    OnValChange = ControlChange
  end
  object ModLbl: TLabel
    Left = 20
    Top = 125
    Caption = 'Interv&alo:'
  end
  object ModEdt: TUpDownEdit
    Left = 122
    Top = 122
    SepDigits = 0
    OnValChange = ControlChange
    Increment = 1
  end
  object NumLbl: TLabel
    Left = 20
    Top = 160
    Caption = 'Numeración:'
  end
  object PageBtn: TRadioButton
    Left = 44
    Top = 183
    Caption = 'Reiniciar en cada &página'
    OnClick = ControlChange
  end
  object SectBtn: TRadioButton
    Left = 44
    Top = 205
    Caption = 'Reiniciar en cada &sección'
    OnClick = ControlChange
  end
  object ContBtn: TRadioButton
    Left = 44
    Top = 227
    Caption = '&Continuo'
    OnClick = ControlChange
  end
end