;the "Insert | Page Numbers..." menu command

object PageNumForm: TPageNumForm
  Caption = 'Insertar números de página'
  ClientHeight = 158
  ClientWidth = 415
  object PosLbl: TLabel
    Left = 7
    Top = 7
    Caption = '&Posición:'
  end
  object PosCmbBx: TComboBox
    Left = 7
    Top = 23
    Width = 205
    Style = csDropDownList
    Items.Strings = (
      'Parte superior de la p. (Encabezado)'
      'Parte inferior de la p. (Pie de página)')
    OnChange = ControlChange
  end
  object FirstPageChkBx: TCheckBox
    Left = 7
    Top = 54
    Caption = '&Mostrar en la primera página'
    OnClick = ControlChange
  end
  object AlignLbl: TLabel
    Left = 7
    Top = 77
    Caption = '&Alineación:'
  end
  object AlignCmbBx: TComboBox
    Left = 7
    Top = 93
    Width = 205
    Style = csDropDownList
    Items.Strings = (
      'Izquierda'
      'Centro'
      'Derecha'
      'Interior'
      'Exterior')
    OnChange = ControlChange
  end
  object FmtBtn: TButton
    Left = 8
    Top = 128
    Width = 75
    Caption = '&Formato...'
    OnClick = FmtBtnClick
  end
  object PreviewGrpBx: TGroupBox
    Left = 220
    Top = 4
    Width = 187
    Height = 110
    Caption = 'Vista previa'
    object PreviewImg: TImage
      Left = 2
      Top = 15
      Width = 183
      Height = 93
      Align = alClient
    end
  end
end