;the "File | Properties…" menu command
;el mandato de menú «Archivo | Propiedades… »

object DocPropertiesForm: TDocPropertiesForm
  Caption = 'Propiedades del documento'
  ClientHeight = 298
  ClientWidth = 392
  object TitleLbl: TLabel
    Left = 10
    Top = 14
    Caption = '&Título:'
  end
  object TitleEdt: TEdit
    Left = 100
    Top = 10
    Width = 280
    MaxLength = 2048
  end
  object SubjLbl: TLabel
    Left = 10
    Top = 39
    Caption = 'A&sunto:'
  end
  object SubjEdt: TEdit
    Left = 100
    Top = 35
    Width = 280
    MaxLength = 2048
  end
  object AuthorLbl: TLabel
    Left = 10
    Top = 64
    Caption = 'A&utor:'
  end
  object AuthorEdt: TEdit
    Left = 100
    Top = 60
    Width = 280
    MaxLength = 2048
  end
  object ManagerLbl: TLabel
    Left = 10
    Top = 89
    Caption = '&Administrador:'
  end
  object ManagerEdt: TEdit
    Left = 100
    Top = 85
    Width = 280
    MaxLength = 2048
  end
  object CompanyLbl: TLabel
    Left = 10
    Top = 114
    Caption = '&Empresa:'
  end
  object CompanyEdt: TEdit
    Left = 100
    Top = 110
    Width = 280
    MaxLength = 2048
  end
  object CategoryLbl: TLabel
    Left = 10
    Top = 139
    Caption = 'Cate&goría:'
  end
  object CategoryEdt: TEdit
    Left = 100
    Top = 135
    Width = 280
    MaxLength = 2048
  end
  object KeywordsLbl: TLabel
    Left = 10
    Top = 164
    Caption = 'Palabras &clave:'
  end
  object KeywordsEdt: TEdit
    Left = 100
    Top = 160
    Width = 280
    MaxLength = 2048
  end
  object CommentLbl: TLabel
    Left = 10
    Top = 189
    Caption = 'Co&mentarios:'
  end
  object CommentMemo: TMemo
    Left = 100
    Top = 185
    Width = 280
    Height = 72
    MaxLength = 2048
    ScrollBars = ssVertical
  end
end