home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09961.iso / htmled1 / fe32_17.exe / FlexED32.exe / 0 / RCDATA / TTABLEDIALOG / TTABLEDIALOG.txt
Text File  |  1996-09-06  |  4KB  |  201 lines

  1. object TableDialog: TTableDialog
  2.   Left = 99
  3.   Top = 127
  4.   HelpContext = 2002
  5.   BorderStyle = bsDialog
  6.   Caption = 'Table Editor'
  7.   ClientHeight = 348
  8.   ClientWidth = 497
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 8
  19.     Top = 8
  20.     Width = 36
  21.     Height = 13
  22.     Caption = 'Capt&ion'
  23.     FocusControl = CaptionEdit
  24.   end
  25.   object Label4: TLabel
  26.     Left = 400
  27.     Top = 8
  28.     Width = 23
  29.     Height = 13
  30.     Caption = '&Align'
  31.     FocusControl = AlignCB
  32.   end
  33.   object StringGrid1: TXStrGrid
  34.     Left = 0
  35.     Top = 129
  36.     Width = 497
  37.     Height = 184
  38.     BorderStyle = bsNone
  39.     ColCount = 2
  40.     DefaultRowHeight = 18
  41.     Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goRowMoving, goColMoving, goEditing, goTabs]
  42.     RowCount = 2
  43.     TabOrder = 0
  44.     OnGetCellColor = StringGrid1GetCellColor
  45.     Grid3D = True
  46.   end
  47.   object OKButton: TButton
  48.     Left = 389
  49.     Top = 322
  50.     Width = 49
  51.     Height = 25
  52.     Caption = '&Ok'
  53.     Default = True
  54.     TabOrder = 1
  55.     OnClick = OKButtonClick
  56.   end
  57.   object CancelButton: TButton
  58.     Left = 441
  59.     Top = 322
  60.     Width = 57
  61.     Height = 25
  62.     Caption = '&Cancel'
  63.     TabOrder = 2
  64.     OnClick = CancelButtonClick
  65.   end
  66.   object CaptionEdit: TEdit
  67.     Left = 8
  68.     Top = 24
  69.     Width = 385
  70.     Height = 21
  71.     TabOrder = 3
  72.   end
  73.   object GroupBox1: TGroupBox
  74.     Left = 8
  75.     Top = 49
  76.     Width = 89
  77.     Height = 73
  78.     Caption = '&Headings'
  79.     TabOrder = 4
  80.     object HeadingCol: TCheckBox
  81.       Left = 8
  82.       Top = 24
  83.       Width = 73
  84.       Height = 17
  85.       Caption = 'Column'
  86.       TabOrder = 0
  87.       OnClick = HeadingColClick
  88.     end
  89.     object HeadingRow: TCheckBox
  90.       Left = 8
  91.       Top = 48
  92.       Width = 57
  93.       Height = 17
  94.       Caption = 'Row'
  95.       TabOrder = 1
  96.       OnClick = HeadingColClick
  97.     end
  98.   end
  99.   object GroupBox2: TGroupBox
  100.     Left = 104
  101.     Top = 49
  102.     Width = 289
  103.     Height = 72
  104.     Caption = '&Table'
  105.     TabOrder = 5
  106.     object Label2: TLabel
  107.       Left = 8
  108.       Top = 24
  109.       Width = 27
  110.       Height = 13
  111.       Caption = 'Rows'
  112.     end
  113.     object Label3: TLabel
  114.       Left = 77
  115.       Top = 24
  116.       Width = 20
  117.       Height = 13
  118.       Caption = 'Cols'
  119.     end
  120.     object Label5: TLabel
  121.       Left = 147
  122.       Top = 24
  123.       Width = 56
  124.       Height = 13
  125.       Caption = 'CellSpacing'
  126.     end
  127.     object Label6: TLabel
  128.       Left = 216
  129.       Top = 24
  130.       Width = 56
  131.       Height = 13
  132.       Caption = 'CellPadding'
  133.     end
  134.     object RowsSE: TSpinEdit
  135.       Left = 8
  136.       Top = 40
  137.       Width = 65
  138.       Height = 22
  139.       MaxLength = 2
  140.       MaxValue = 99
  141.       MinValue = 1
  142.       TabOrder = 0
  143.       Value = 1
  144.       OnChange = RowsSEChange
  145.     end
  146.     object ColumnSE: TSpinEdit
  147.       Left = 77
  148.       Top = 40
  149.       Width = 65
  150.       Height = 22
  151.       MaxLength = 2
  152.       MaxValue = 99
  153.       MinValue = 1
  154.       TabOrder = 1
  155.       Value = 1
  156.       OnChange = ColumnSEChange
  157.     end
  158.     object SpinEdit1: TSpinEdit
  159.       Left = 147
  160.       Top = 40
  161.       Width = 65
  162.       Height = 22
  163.       MaxValue = 0
  164.       MinValue = 0
  165.       TabOrder = 2
  166.       Value = 0
  167.     end
  168.     object SpinEdit2: TSpinEdit
  169.       Left = 216
  170.       Top = 40
  171.       Width = 65
  172.       Height = 22
  173.       MaxValue = 0
  174.       MinValue = 0
  175.       TabOrder = 3
  176.       Value = 0
  177.     end
  178.   end
  179.   object AlignCB: TComboBox
  180.     Left = 400
  181.     Top = 24
  182.     Width = 89
  183.     Height = 21
  184.     Style = csDropDownList
  185.     ItemHeight = 13
  186.     Items.Strings = (
  187.       'Top'
  188.       'Bottom')
  189.     TabOrder = 6
  190.   end
  191.   object BorderCB: TCheckBox
  192.     Left = 416
  193.     Top = 72
  194.     Width = 57
  195.     Height = 17
  196.     Caption = 'Border'
  197.     State = cbChecked
  198.     TabOrder = 7
  199.   end
  200. end
  201.