;the "Convert text to table" command of the "Table" toolbar

object TableToTextForm: TTableToTextForm
  Caption = 'Convertir Tabla a Texto'
  ClientHeight = 193
  ClientWidth = 224
  object Lbl: TLabel
    Left = 15
    Top = 15
    Caption = 'Separar texto de celda con:'
  end
  object ParRadBtn: TRadioButton
    Left = 30
    Top = 40
    Caption = 'Marcas de fin de &párrafo'
    OnClick = RadBtnClick
  end
  object TabRadBtn: TRadioButton
    Left = 30
    Top = 65
    Caption = 'Caracteres de &tabulación'
    OnClick = RadBtnClick
  end
  object CommaRadBtn: TRadioButton
    Left = 30
    Top = 90
    Caption = '&Comas'
    OnClick = RadBtnClick
  end
  object OtherRadBtn: TRadioButton
    Left = 30
    Top = 115
    Caption = '&Otro:'
    OnClick = RadBtnClick
  end
  object Edt: TEdit
    Left = 90
    Top = 113
    Width = 40
    MaxLength = 1
    Text = '-'
  end
end