;the "Insert | Table..." menu command (different design depending on whether there is a selection in the document)

object InsTableForm: TInsTableForm
  ClientHeight = 143
  ClientWidth = 479
  object SeparatePanel: TPanel
    Left = 15
    Top = 15
    Width = 255
    Height = 74
    BevelOuter = bvNone
    object SeparateLbl: TLabel
      Top = 1
      Caption = 'Separar texto en:'
    end
    object ParRadBtn: TRadioButton
      Top = 23
      Caption = 'Marcas de fin de &párrafo'
      OnClick = ControlChange
    end
    object TabRadBtn: TRadioButton
      Top = 47
      Caption = 'Caracteres de &tabulación'
      OnClick = ControlChange
    end
    object CommaRadBtn: TRadioButton
      Left = 150
      Top = 23
      Caption = 'Co&mas'
      OnClick = ControlChange
    end
    object OtherRadBtn: TRadioButton
      Left = 150
      Top = 47
      Caption = '&Otro:'
      OnClick = ControlChange
    end
    object OtherEdt: TEdit
      Left = 199
      Top = 45
      Width = 40
      MaxLength = 1
      Text = '-'
      OnChange = ControlChange
    end
    object Bevel: TBevel
      Width = 2
      Align = alRight
      Shape = bsBox
    end
  end
  object SizePanel: TPanel
    Left = 287
    Top = 15
    Width = 191
    Height = 68
    BevelOuter = bvNone
    object ColLbl: TLabel
      Top = 8
      Caption = 'Número de &columnas:'
    end
    object ColEdt: TUpDownEdit
      Left = 106
      Top = 5
      Width = 45
      Min = 1
      SepDigits = 0
      OnValChange = ControlChange
      Increment = 1
    end
    object RowLbl: TLabel
      Top = 42
      Caption = 'Número de &filas:'
    end
    object RowEdt: TUpDownEdit
      Left = 106
      Top = 39
      Width = 45
      Min = 1
      SepDigits = 0
      Increment = 1
    end
  end
  object DefBtn: TSpeedButton
    Left = 8
    Top = 110
    Width = 170
    Height = 22
    Caption = 'Propiedades predeterminadas'
    OnClick = DefBtnClick
  end
  object DefPopupMenu: TPopupMenu
    object DefMenuItem1: TMenuItem
      Caption = 'Editar'
      OnClick = DefMenuItem1Click
    end
    object DefMenuItem2: TMenuItem
      Caption = 'Restaurar'
      OnClick = DefMenuItem2Click
    end
  end
end