;the "File | Save Special | Save As PDF..." menu command
;el mandato de menú «Archivo | Guardar especial | Guardar como PDF…»

object PDFForm: TPDFForm
  Caption = 'Guardar como PDF'
  ClientHeight = 300
  ClientWidth = 414
  object PropGrpBx: TGroupBox
    Left = 10
    Top = 10
    Width = 394
    Height = 130
    Caption = 'Propiedades'
    object TLbl: TLabel
      Left = 10
      Top = 25
      Caption = '&Título:'
    end
    object TEdt: TEdit
      Left = 100
      Top = 21
      Width = 280
    end
    object SLbl: TLabel
      Left = 10
      Top = 50
      Caption = 'A&sunto:'
    end
    object SEdt: TEdit
      Left = 100
      Top = 46
      Width = 280
    end
    object ALbl: TLabel
      Left = 10
      Top = 75
      Caption = 'A&utor:'
    end
    object AEdt: TEdit
      Left = 100
      Top = 71
      Width = 280
    end
    object KLbl: TLabel
      Left = 10
      Top = 100
      Caption = 'Palabras &clave:'
    end
    object KEdt: TEdit
      Left = 100
      Top = 96
      Width = 280
    end
  end
  object PDFAChkBx: TCheckBox
    Left = 10
    Top = 155
    Caption = 'Compatible con PDF/&A'
    OnClick = ControlChange
  end
  object TOCChkBx: TCheckBox
    Left = 160
    Top = 155
    Caption = 'Generar &esquema (Índice de contenido)'
  end
  object EncChkBx: TCheckBox
    Left = 10
    Top = 185
    Caption = 'Cifrar con contrase&ña:'
    OnClick = ControlChange
  end
  object PassEdt: TEdit
    Left = 160
    Top = 181
    Width = 245
  end
  object RetypeLbl: TLabel
    Left = 27
    Top = 210
    Caption = '&Repetir la contraseña:'
  end
  object Pass2Edt: TEdit
    Left = 160
    Top = 206
  end
  object OpenChkBx: TCheckBox
    Left = 10
    Top = 235
    Caption = 'Abrir automáticamente en el lector de &PDF'
  end
end