You've already forked lazarus-ccr
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
![]() |
object MainForm: TMainForm
|
||
|
Left = 308
|
||
|
Height = 419
|
||
|
Top = 139
|
||
|
Width = 472
|
||
|
BorderIcons = [biSystemMenu, biMinimize]
|
||
|
BorderStyle = bsSingle
|
||
|
Caption = 'Customizing Cells Based on Conditions'
|
||
|
ClientHeight = 419
|
||
|
ClientWidth = 472
|
||
|
OnCreate = FormCreate
|
||
|
Position = poDesktopCenter
|
||
|
LCLVersion = '2.3.0.0'
|
||
|
object NiceGrid1: TNiceGrid
|
||
|
Cursor = 101
|
||
|
Left = 16
|
||
|
Height = 385
|
||
|
Top = 16
|
||
|
Width = 441
|
||
|
ColCount = 5
|
||
|
RowCount = 20
|
||
|
HeaderFont.Height = -11
|
||
|
HeaderFont.Name = 'MS Sans Serif'
|
||
|
FooterFont.Height = -11
|
||
|
FooterFont.Name = 'MS Sans Serif'
|
||
|
FitToWidth = True
|
||
|
Columns = <
|
||
|
item
|
||
|
Title = 'Column 1'
|
||
|
Width = 84
|
||
|
end
|
||
|
item
|
||
|
Title = 'Column 2'
|
||
|
Width = 84
|
||
|
end
|
||
|
item
|
||
|
Title = 'Column 3'
|
||
|
Width = 83
|
||
|
end
|
||
|
item
|
||
|
Title = 'Column 4'
|
||
|
Width = 83
|
||
|
end
|
||
|
item
|
||
|
Title = 'Column 5'
|
||
|
Width = 83
|
||
|
end>
|
||
|
GutterFont.Height = -11
|
||
|
GutterFont.Name = 'MS Sans Serif'
|
||
|
ShowFooter = False
|
||
|
OnDrawCell = NiceGrid1DrawCell
|
||
|
TabOrder = 0
|
||
|
end
|
||
|
end
|