-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetcustomcellsize.lfm
60 lines (60 loc) · 1.05 KB
/
setcustomcellsize.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
object SetCustomCellSizeForm: TSetCustomCellSizeForm
Left = 755
Height = 179
Top = 476
Width = 320
BorderStyle = bsDialog
Caption = 'Set Custom Cell Size'
ClientHeight = 179
ClientWidth = 320
LCLVersion = '3.4.0.0'
object SpinEditCellWidth: TSpinEditEx
Left = 80
Height = 23
Top = 32
Width = 103
MaxLength = 0
NumbersOnly = True
TabOrder = 0
MaxValue = 16
MinValue = 8
NullValue = 0
Value = 14
end
object SpinEditCellHeight: TSpinEditEx
Left = 80
Height = 23
Top = 64
Width = 103
MaxLength = 0
NumbersOnly = True
TabOrder = 1
MaxValue = 16
MinValue = 8
NullValue = 0
Value = 16
end
object Label1: TLabel
Left = 40
Height = 15
Top = 32
Width = 32
Caption = 'Width'
end
object Label2: TLabel
Left = 40
Height = 15
Top = 64
Width = 36
Caption = 'Height'
end
object OKButton: TButton
Left = 216
Height = 25
Top = 128
Width = 75
Caption = 'OK'
TabOrder = 2
OnClick = OKButtonClick
end
end