-
Notifications
You must be signed in to change notification settings - Fork 1
/
f2pdfexunit.lfm
1684 lines (1684 loc) · 44.2 KB
/
f2pdfexunit.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object F2PDFExForm: TF2PDFExForm
Left = 371
Height = 430
Top = 231
Width = 593
Caption = 'Form to PDF Example'
ClientHeight = 400
ClientWidth = 593
Menu = MainMenu
OnCreate = FormCreate
LCLVersion = '2.2.2.0'
object PageControl1: TPageControl
Left = 0
Height = 377
Top = 0
Width = 593
ActivePage = TabSheet9
Align = alClient
ParentFont = False
TabIndex = 8
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'Text 1'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Image: TImage
Left = 47
Height = 169
Top = 32
Width = 184
Stretch = True
end
object Shape1: TShape
Left = 47
Height = 1
Top = 280
Width = 201
end
object Shape2: TShape
Left = 49
Height = 1
Top = 344
Width = 201
end
object Label1: TLabel
Left = 56
Height = 18
Top = 304
Width = 173
Caption = 'This is an example PDF form'
ParentColor = False
ParentFont = False
end
object Label12: TLabel
Left = 372
Height = 9
Top = 32
Width = 21
Caption = 'Minute'
Font.Height = 6
ParentColor = False
ParentFont = False
end
object Label13: TLabel
Left = 368
Height = 14
Top = 66
Width = 26
Caption = 'Small'
Font.Color = clRed
Font.Height = 10
ParentColor = False
ParentFont = False
end
object Label14: TLabel
Left = 359
Height = 17
Top = 110
Width = 47
Caption = 'Medium'
Font.Color = clGreen
Font.Height = 12
ParentColor = False
ParentFont = False
end
object Label15: TLabel
Left = 369
Height = 23
Top = 155
Width = 25
Caption = 'Big'
Font.Color = clBlue
Font.Height = 16
ParentColor = False
ParentFont = False
end
object Label16: TLabel
Left = 344
Height = 35
Top = 203
Width = 78
Caption = 'Bigger'
Font.Color = clYellow
Font.Height = 25
ParentColor = False
ParentFont = False
end
object Label17: TLabel
Left = 348
Height = 45
Top = 261
Width = 66
Caption = 'Best'
Font.Color = clNavy
Font.Height = 32
ParentColor = False
ParentFont = False
end
object Edit1: TEdit
Left = 47
Height = 32
Top = 229
Width = 227
ParentFont = False
TabOrder = 0
Text = 'Write your text here'
end
object StaticText1: TStaticText
Left = 461
Height = 45
Top = 16
Width = 66
AutoSize = True
Caption = 'Best'
Font.Height = 32
ParentFont = False
TabOrder = 1
end
object StaticText2: TStaticText
Left = 457
Height = 35
Top = 84
Width = 73
AutoSize = True
Caption = 'Better'
Font.Height = 25
ParentFont = False
TabOrder = 2
end
object StaticText3: TStaticText
Left = 485
Height = 20
Top = 143
Width = 22
AutoSize = True
Caption = 'Big'
Font.Height = 14
ParentFont = False
TabOrder = 3
end
object StaticText4: TStaticText
Left = 472
Height = 17
Top = 191
Width = 47
AutoSize = True
Caption = 'Medium'
Font.Height = 12
ParentFont = False
TabOrder = 4
end
object StaticText5: TStaticText
Left = 482
Height = 14
Top = 236
Width = 26
AutoSize = True
Caption = 'Small'
Font.Height = 10
ParentFont = False
TabOrder = 5
end
object StaticText6: TStaticText
Left = 486
Height = 9
Top = 279
Width = 21
AutoSize = True
Caption = 'Minute'
Font.Height = 6
ParentFont = False
TabOrder = 6
end
end
object TabSheet2: TTabSheet
Caption = 'Shapes 2'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Label2: TLabel
Left = 184
Height = 18
Top = 320
Width = 198
Caption = 'Shapes lines and colors example'
ParentColor = False
ParentFont = False
end
object Shape3: TShape
Left = 40
Height = 80
Top = 32
Width = 153
Brush.Color = clRed
end
object Shape4: TShape
Left = 300
Height = 80
Top = 31
Width = 153
Brush.Style = bsClear
Pen.Color = clRed
end
object Shape5: TShape
Left = 329
Height = 80
Top = 85
Width = 153
Brush.Style = bsClear
Pen.Color = clBlue
Pen.Style = psDash
end
object Shape6: TShape
Left = 358
Height = 80
Top = 139
Width = 153
Brush.Style = bsClear
Pen.Color = clGreen
Pen.Style = psDashDot
end
object Shape7: TShape
Left = 387
Height = 80
Top = 193
Width = 153
Brush.Style = bsClear
Pen.Style = psDashDotDot
end
object Shape8: TShape
Left = 416
Height = 80
Top = 247
Width = 153
Brush.Style = bsClear
Pen.Style = psDot
end
object Shape9: TShape
Left = 64
Height = 80
Top = 97
Width = 153
Brush.Color = clBlue
Pen.Width = 2
end
object Shape10: TShape
Left = 88
Height = 80
Top = 162
Width = 153
Brush.Color = clGreen
Pen.Width = 4
end
object Shape11: TShape
Left = 112
Height = 80
Top = 227
Width = 153
Pen.Width = 8
end
end
object TabSheet4: TTabSheet
Caption = 'Shapes 3'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Shape15: TShape
Left = 16
Height = 304
Top = 8
Width = 490
Brush.Style = bsClear
Shape = stRoundRect
end
object Shape12: TShape
Left = 64
Height = 134
Top = 42
Width = 194
Shape = stRoundRect
end
object Label18: TLabel
Left = 198
Height = 18
Top = 320
Width = 102
Caption = 'Different Shapes'
ParentColor = False
ParentFont = False
end
object Shape13: TShape
Left = 136
Height = 118
Top = 112
Width = 193
Shape = stEllipse
end
object Shape14: TShape
Left = 272
Height = 120
Top = 160
Width = 120
Shape = stEllipse
end
object Shape16: TShape
Left = 344
Height = 32
Top = 64
Width = 40
Shape = stRoundRect
end
end
object TabSheet3: TTabSheet
Caption = 'GroupBox 4'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Label3: TLabel
Left = 288
Height = 18
Top = 339
Width = 147
Caption = 'Grouped items example'
ParentColor = False
ParentFont = False
end
object GroupBox1: TGroupBox
Left = 0
Height = 342
Top = 0
Width = 185
Align = alLeft
Caption = 'GroupBox1'
ClientHeight = 312
ClientWidth = 181
ParentFont = False
TabOrder = 0
object Label4: TLabel
Left = 16
Height = 18
Top = 0
Width = 37
Caption = 'Line 1'
ParentColor = False
ParentFont = False
end
object Label5: TLabel
Left = 16
Height = 18
Top = 40
Width = 37
Caption = 'Line 2'
ParentColor = False
ParentFont = False
end
object Label6: TLabel
Left = 16
Height = 18
Top = 120
Width = 38
Caption = 'Line 4'
ParentColor = False
ParentFont = False
end
object Label7: TLabel
Left = 16
Height = 18
Top = 80
Width = 37
Caption = 'Line 3'
ParentColor = False
ParentFont = False
end
object Label8: TLabel
Left = 16
Height = 18
Top = 160
Width = 37
Caption = 'Line 5'
ParentColor = False
ParentFont = False
end
object Label9: TLabel
Left = 16
Height = 18
Top = 200
Width = 37
Caption = 'Line 6'
ParentColor = False
ParentFont = False
end
object Label10: TLabel
Left = 16
Height = 18
Top = 240
Width = 37
Caption = 'Line 7'
ParentColor = False
ParentFont = False
end
object Label11: TLabel
Left = 16
Height = 18
Top = 296
Width = 37
Caption = 'Line 8'
ParentColor = False
ParentFont = False
end
end
object RadioGroup1: TRadioGroup
Left = 185
Height = 174
Top = 0
Width = 392
AutoFill = True
Caption = 'RadioGroup1'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 144
ClientWidth = 388
ParentFont = False
TabOrder = 1
object RadioButton5: TRadioButton
Left = 6
Height = 36
Top = 0
Width = 376
Caption = 'RadioButton5'
ParentFont = False
TabOrder = 0
end
object RadioButton6: TRadioButton
Left = 6
Height = 36
Top = 36
Width = 376
Caption = 'RadioButton6'
ParentFont = False
TabOrder = 1
end
object RadioButton7: TRadioButton
Left = 6
Height = 36
Top = 72
Width = 376
Caption = 'RadioButton7'
ParentFont = False
TabOrder = 2
end
object RadioButton8: TRadioButton
Left = 6
Height = 36
Top = 108
Width = 376
Caption = 'RadioButton8'
ParentFont = False
TabOrder = 3
end
end
object CheckGroup1: TCheckGroup
Left = 185
Height = 152
Top = 176
Width = 393
AutoFill = True
Caption = 'CheckGroup1'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 122
ClientWidth = 389
ParentFont = False
TabOrder = 2
object CheckBox5: TCheckBox
Left = 6
Height = 37
Top = 6
Width = 377
Caption = 'CheckBox5'
ParentFont = False
TabOrder = 0
end
object CheckBox6: TCheckBox
Left = 6
Height = 37
Top = 43
Width = 377
Caption = 'CheckBox6'
ParentFont = False
TabOrder = 1
end
object CheckBox7: TCheckBox
Left = 6
Height = 36
Top = 80
Width = 377
Caption = 'CheckBox7'
ParentFont = False
TabOrder = 2
end
end
end
object TabSheet5: TTabSheet
Caption = 'CheckBoxes 5'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Label19: TLabel
Left = 219
Height = 18
Top = 332
Width = 183
Caption = 'Check and Radio box example'
ParentColor = False
ParentFont = False
end
object Panel1: TPanel
Left = 8
Height = 176
Top = 0
Width = 286
ClientHeight = 176
ClientWidth = 286
Color = clMoneyGreen
ParentColor = False
ParentFont = False
TabOrder = 0
object CheckBox1: TCheckBox
Left = 17
Height = 22
Top = 16
Width = 96
Caption = 'CheckBox1'
Color = clDefault
ParentColor = False
ParentFont = False
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 17
Height = 22
Top = 57
Width = 96
Caption = 'CheckBox2'
ParentFont = False
TabOrder = 1
end
object CheckBox3: TCheckBox
Left = 17
Height = 22
Top = 98
Width = 96
Caption = 'CheckBox3'
ParentFont = False
TabOrder = 2
end
object CheckBox4: TCheckBox
Left = 17
Height = 22
Top = 139
Width = 97
Caption = 'CheckBox4'
ParentFont = False
TabOrder = 3
end
end
object Panel2: TPanel
Left = 296
Height = 176
Top = 0
Width = 288
ClientHeight = 176
ClientWidth = 288
Color = clSkyBlue
ParentColor = False
ParentFont = False
TabOrder = 1
object RadioButton1: TRadioButton
Left = 37
Height = 22
Top = 23
Width = 112
Caption = 'RadioButton1'
ParentFont = False
TabOrder = 0
end
object RadioButton2: TRadioButton
Left = 37
Height = 22
Top = 58
Width = 112
Caption = 'RadioButton2'
ParentFont = False
TabOrder = 1
end
object RadioButton3: TRadioButton
Left = 37
Height = 22
Top = 93
Width = 112
Caption = 'RadioButton3'
ParentFont = False
TabOrder = 2
end
object RadioButton4: TRadioButton
Left = 37
Height = 22
Top = 128
Width = 113
Caption = 'RadioButton4'
ParentFont = False
TabOrder = 3
end
end
object Panel3: TPanel
Left = 9
Height = 76
Top = 184
Width = 570
Caption = 'Panel3'
ClientHeight = 76
ClientWidth = 570
ParentFont = False
TabOrder = 2
object Label67: TLabel
Left = 0
Height = 18
Top = 0
Width = 51
Caption = 'Text Top'
ParentColor = False
end
object Label68: TLabel
Left = 0
Height = 18
Top = 29
Width = 71
Caption = 'Text Middle'
ParentColor = False
end
object Label69: TLabel
Left = 0
Height = 18
Top = 58
Width = 74
Caption = 'Text Bottom'
ParentColor = False
end
end
end
object TabSheet6: TTabSheet
Caption = 'Memo 6'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Memo1: TMemo
Left = 0
Height = 342
Top = 0
Width = 589
Align = alClient
Lines.Strings = (
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor'
'incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud'
'exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure'
'dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. '
'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit '
'anim id est laborum.'
''
'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque'
'laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi '
'architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia '
'voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui'
'ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia'
'dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora'
'incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima'
'veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid'
'ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea'
'voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat'
'quo voluptas nulla pariatur?'
''
'At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium '
'voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint '
'occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia'
'animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita '
'distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil '
'impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda '
'est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut '
'rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non '
'recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis '
'voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.'
''
''
''
'Maecenas mauris massa, auctor ut nisl nec, suscipit gravida nisi. Nunc volutpat volutpat augue, vel rutrum massa aliquam eu. Integer non congue lorem. Vestibulum sagittis vel turpis id feugiat. Pellentesque condimentum tempor augue. Integer sodales, nunc a feugiat varius, arcu est pretium mauris, sed lacinia augue odio et mi. Nullam malesuada sagittis ultricies. Nulla semper lobortis feugiat. Pellentesque luctus ut nisl eget ornare. Maecenas sit amet aliquam leo, semper viverra nulla. Etiam quis commodo justo.'
''
'Donec fermentum est vitae est semper, in laoreet felis sollicitudin. Duis semper tincidunt ipsum vitae hendrerit. Maecenas id massa sagittis, vulputate leo eget, iaculis tortor. Duis eget auctor ante. Mauris ornare nunc nulla, sed aliquam justo scelerisque fringilla. Mauris et nulla et neque tincidunt pellentesque vel sit amet dui. Pellentesque viverra diam ut sagittis bibendum. Praesent varius magna turpis, non lobortis metus sodales eget. Sed tempor egestas interdum. Pellentesque a placerat neque, vitae rutrum felis. Phasellus et auctor diam. Morbi sit amet sodales ex.'
''
'Nullam sed nulla maximus leo semper gravida. Fusce ac sodales arcu, ac faucibus nulla. Phasellus a lacus eget ante tempus venenatis quis at mi. Nunc malesuada dignissim lorem, quis pharetra odio sollicitudin a. Curabitur luctus malesuada nibh eget egestas. Nunc tincidunt rutrum ex ultricies laoreet. Curabitur ut accumsan nisi. Duis rhoncus tempus enim eget malesuada. Ut tristique aliquam pharetra. Cras volutpat maximus ipsum, eu fringilla nisl lobortis sit amet. Quisque ligula nisi, volutpat sit amet orci a, viverra efficitur ante. Cras sollicitudin pulvinar efficitur. Maecenas efficitur, odio vitae ornare sagittis, orci sem condimentum est, vel aliquam eros elit id erat. Mauris id risus rutrum, luctus arcu ut, venenatis magna.'
''
'Donec turpis metus, interdum non quam molestie, ultrices porttitor purus. Etiam quis ultrices elit, bibendum cursus mauris. Vestibulum rutrum nibh sit amet ex dignissim dignissim. Sed sit amet turpis in massa congue accumsan vitae ut erat. Vestibulum viverra ante vel quam tempus, id laoreet massa finibus. Suspendisse rhoncus dui quam, vitae rutrum mauris tincidunt non. Duis massa turpis, posuere eget varius non, ultricies in arcu. Aenean imperdiet turpis quis lorem sodales finibus. Praesent posuere tellus et pretium commodo. Phasellus mollis massa molestie tellus tempus, pulvinar gravida velit feugiat. Donec quam ligula, accumsan eget urna quis, tincidunt venenatis mauris. Aliquam gravida efficitur enim quis tempor. Vestibulum in rhoncus risus. Proin ultricies condimentum lobortis.'
''
'Proin et rhoncus erat. Donec dignissim dolor lacus, nec dictum libero tempus ornare. Proin sagittis sem eros, posuere rutrum urna facilisis non. Nam aliquam justo facilisis, pretium ante nec, ullamcorper metus. Proin volutpat, sapien ac tristique fermentum, est neque tincidunt tellus, ut porta ipsum purus nec ex. Mauris sed posuere odio. Pellentesque rutrum erat eget dui porta porta. Mauris sit amet consectetur nibh. Vestibulum faucibus ornare orci. Sed luctus purus a erat porta, vel accumsan libero porta. Vivamus porttitor ac neque id auctor. Ut vulputate lectus neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce a urna a orci ullamcorper tempus sed at libero. '
)
ParentFont = False
ScrollBars = ssAutoVertical
TabOrder = 0
end
end
object TabSheet7: TTabSheet
Caption = 'TeeChart 7'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object Chart1: TChart
Left = 0
Height = 342
Top = 0
Width = 589
AxisList = <
item
Marks.LabelBrush.Style = bsClear
Minors = <>
Title.LabelFont.Orientation = 900
Title.Visible = True
Title.Caption = 'Dummy results'
Title.LabelBrush.Style = bsClear
end
item
Intervals.Count = 1
Intervals.NiceSteps = '|1.0'
Alignment = calBottom
Marks.LabelBrush.Style = bsClear
Minors = <
item
Grid.Visible = False
Intervals.MinLength = 5
Intervals.Options = [aipUseCount, aipUseMinLength]
Marks.LabelBrush.Style = bsClear
end>
Title.Visible = True
Title.Caption = 'Random list'
Title.LabelBrush.Style = bsClear
end>
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'TAChart'
)
Align = alClient
object Chart1LineSeries1: TLineSeries
Source = RandomChartSource1
end
end
end
object TabSheet8: TTabSheet
Caption = 'StringGrid 8'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object StringGrid2: TStringGrid
Left = 0
Height = 143
Top = 0
Width = 280
ColCount = 4
FixedCols = 0
FixedRows = 0
ParentFont = False
TabOrder = 0
end
object Label20: TLabel
Left = 72
Height = 18
Top = 160
Width = 122
Caption = 'String Grid example'
ParentColor = False
ParentFont = False
end
object StringGrid1: TStringGrid
Left = 296
Height = 321
Top = 0
Width = 280
Columns = <
item
Title.Caption = 'Col A'
end
item
Title.Caption = 'Col B'
end
item
Title.Caption = 'Col C'
Visible = False
end
item
Title.Caption = 'Col D'
end>
ParentFont = False
TabOrder = 1
end
object DateTimePicker1: TDateTimePicker
Left = 64
Height = 26
Top = 216
Width = 153
CenturyFrom = 1941
MaxDate = 2958465
MinDate = -53780
TabOrder = 2
TrailingSeparator = False
TextForNullDate = 'NULL'
LeadingZeros = True
Kind = dtkDateTime
TimeFormat = tf24
TimeDisplay = tdHMS
DateMode = dmComboBox
Date = 44368
Time = 0.508002152775589
UseDefaultSeparators = True
HideDateTimeParts = []
MonthNames = 'Long'
end
object Label70: TLabel
Left = 76
Height = 18
Top = 272
Width = 118
Caption = 'Date Time example'
ParentColor = False
end
end
object TabSheet9: TTabSheet
Caption = 'Data 9'
ClientHeight = 342
ClientWidth = 589
ParentFont = False
object ListBox1: TListBox
Left = 37
Height = 91
Top = 29
Width = 100
Items.Strings = (
'Item A'
'Item B'
'Item C'
'Item D'
'Item E'
'Item F'
'Item G'
'Item H'
'Item I'
'Item J'
'Item K'
'Item L'
'Item M'
'Item N'
'Item N'
'Item O'
'Item P'
'Item Q'
'Item R'
)
ItemHeight = 24
ParentFont = False
TabOrder = 0
end
object SpinEdit1: TSpinEdit
Left = 38
Height = 32
Top = 187
Width = 50
Alignment = taCenter
ParentFont = False
TabOrder = 1
Value = 20
end
object FloatSpinEdit1: TFloatSpinEdit
Left = 38
Height = 32
Top = 231
Width = 50
ParentFont = False
TabOrder = 2
Value = 9.81
end
object FloatSpinEdit2: TFloatSpinEdit
Left = 38
Height = 32
Top = 275
Width = 50
Alignment = taRightJustify
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
Value = 3.15
end
object SpinEdit2: TSpinEdit
Left = 38
Height = 32
Top = 143
Width = 50
Alignment = taRightJustify
ParentFont = False
TabOrder = 4
Value = 10
end
object ComboBox1: TComboBox
Left = 166
Height = 32
Top = 16
Width = 156
ItemHeight = 24
Items.Strings = (
'Item A'
'Item B'
'Item C'
'Item D'
'Item E'
'Item F'
'Item J'
'Item K'
'Item L'
'Item M'
'Item N'
'Item N'
'Item O'
'Item P'
'Item Q'
'Item R'
)
ParentFont = False
TabOrder = 5
Text = 'Select Item'
end
object SpinEditEx1: TSpinEditEx
Left = 166
Height = 32
Top = 53
Width = 103
Alignment = taLeftJustify
Color = clDefault
MaxLength = 0
ParentColor = True
ParentFont = False
TabOrder = 6
NullValue = 0
Value = 15
end
object SpinEditEx2: TSpinEditEx
Left = 166
Height = 32
Top = 102
Width = 103
Color = clDefault
MaxLength = 0
ParentColor = True
ParentFont = False
TabOrder = 7
NullValue = 0
Value = 5
end
object FloatSpinEditEx1: TFloatSpinEditEx
Left = 166