-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathFMX.ListBox.xml
3616 lines (3331 loc) · 228 KB
/
FMX.ListBox.xml
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
<?xml version="1.0" ?><namespace name="FMX.ListBox" platform="Win32">
<class name="TListBoxItem" file="FMX.ListBox.pas" line="30">
<interfaces>
<implements name="IGlyph"/>
</interfaces>
<members>
<enum name="TBackgroundShape" visibility="private" alias="FMX.ListBox.TBackgroundShape" file="FMX.ListBox.pas" line="32">
<element value="0" name="SeparatorBottom" file="FMX.ListBox.pas" line="32"/>
<element value="1" name="Sharp" file="FMX.ListBox.pas" line="32"/>
<element value="2" name="RoundTop" file="FMX.ListBox.pas" line="32"/>
<element value="3" name="RoundBottom" file="FMX.ListBox.pas" line="32"/>
<element value="4" name="RoundAll" file="FMX.ListBox.pas" line="32"/>
</enum>
<field name="FIsChecked" type="Boolean" visibility="private" size="1" offset="992" file="FMX.ListBox.pas" line="34"/>
<field name="FCheck" type="TCheckBox" visibility="private" size="4" offset="996" file="FMX.ListBox.pas" line="35"/>
<field name="FIsSelected" type="Boolean" visibility="private" size="1" offset="1000" file="FMX.ListBox.pas" line="36"/>
<field name="FIsSelectable" type="Boolean" visibility="private" size="1" offset="1001" file="FMX.ListBox.pas" line="37"/>
<field name="FData" type="TObject" visibility="private" size="4" offset="1004" file="FMX.ListBox.pas" line="38"/>
<field name="FItemData" type="TListBoxItemData" visibility="private" size="4" offset="1008" file="FMX.ListBox.pas" line="39"/>
<field name="FBitmap" type="TBitmap" visibility="private" size="4" offset="1012" file="FMX.ListBox.pas" line="40"/>
<field name="FIcon" type="TImage" visibility="private" size="4" offset="1016" file="FMX.ListBox.pas" line="41"/>
<field name="FOldIconVisible" type="Boolean" visibility="private" size="1" offset="1020" file="FMX.ListBox.pas" line="42"/>
<field name="FOldCheckAlign" type="TAlignLayout" visibility="private" size="4" offset="1024" file="FMX.ListBox.pas" line="43"/>
<field name="FGlyph" type="TGlyph" visibility="private" size="4" offset="1028" file="FMX.ListBox.pas" line="44"/>
<field name="FBackgroundShape" type="TListBoxItem.TBackgroundShape" visibility="private" size="1" offset="1032" file="FMX.ListBox.pas" line="45"/>
<field name="FImageLink" type="TGlyphImageLink" visibility="private" size="4" offset="1036" file="FMX.ListBox.pas" line="46"/>
<procedure name="SetIsChecked" visibility="private" file="FMX.ListBox.pas" line="47">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="DoCheckClick" visibility="private" file="FMX.ListBox.pas" line="48">
<parameters>
<parameter name="Sender" type="TObject"/>
</parameters>
</procedure>
<procedure name="InitCheckBox" visibility="private" file="FMX.ListBox.pas" line="49">
<parameters>
<parameter name="Visible" type="Boolean"/>
</parameters>
</procedure>
<procedure name="UpdateCheck" visibility="private" file="FMX.ListBox.pas" line="50">
</procedure>
<procedure name="SetIsSelected" visibility="private" file="FMX.ListBox.pas" line="51">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetSelectable" visibility="private" file="FMX.ListBox.pas" line="52">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImages" visibility="private" file="FMX.ListBox.pas" line="53">
<parameters>
<retval type="TCustomImageList">
<devnotes>
<summary> List of images. Base class that used in fire monkey without published properties </summary>
</devnotes>
</retval>
</parameters>
</function>
<procedure name="SetImages" visibility="private" file="FMX.ListBox.pas" line="54">
<parameters>
<parameter name="Value" type="TCustomImageList" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageIndex" visibility="private" file="FMX.ListBox.pas" line="56">
<parameters>
<retval type="TImageIndex"/>
</parameters>
</function>
<procedure name="SetImageIndex" visibility="private" file="FMX.ListBox.pas" line="57">
<parameters>
<parameter name="Value" type="TImageIndex" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageList" visibility="private" procflags="inline" file="FMX.ListBox.pas" line="58">
<parameters>
<retval type="TBaseImageList"/>
</parameters>
</function>
<procedure name="SetImageList" visibility="private" file="FMX.ListBox.pas" line="59">
<parameters>
<parameter name="Value" type="TBaseImageList" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetItemData" visibility="private" file="FMX.ListBox.pas" line="62">
<parameters>
<parameter name="Value" type="TListBoxItemData" paramflags="const"/>
</parameters>
</procedure>
<procedure name="ChangeOrder" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="64">
<devnotes><summary>
Notification method called after the creation order is changed.
FMX.ListBox.TListBoxItem.ChangeOrder inherits from FMX.Types.TFmxObject.ChangeOrder. All content below this line refers to FMX.Types.TFmxObject.ChangeOrder.
Notification method called after the creation order is changed. ChangeOrder is a virtual method to be implemented in subclasses to allow for changing the creation order of this FMX object.
</summary></devnotes></procedure>
<function name="ListBox" visibility="protected" file="FMX.ListBox.pas" line="65">
<parameters>
<retval type="TCustomListBox"/>
</parameters>
<devnotes><summary>
Returns the list box object that contains the item.
ListBox gets the list box parent of the item. If the parent of the item is not a TListBox, the method returns nil.
</summary></devnotes></function>
<function name="ComboBox" visibility="protected" file="FMX.ListBox.pas" line="66">
<parameters>
<retval type="TCustomComboBox"/>
</parameters>
<devnotes><summary>
Returns the combo box object that contains the item.
ComboBox gets the combo box parent of the item. If the parent of the item is not a TComboBox, the method returns nil.
</summary></devnotes></function>
<function name="GetDefaultSize" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="67">
<parameters>
<retval type="TSizeF"/>
</parameters>
<devnotes><summary>
Getter of DefaultSize.
FMX.ListBox.TListBoxItem.GetDefaultSize inherits from FMX.Controls.TControl.GetDefaultSize. All content below this line refers to FMX.Controls.TControl.GetDefaultSize.
Getter of DefaultSize.
</summary></devnotes></function>
<procedure name="ApplyStyle" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="68">
<devnotes><summary>
Customizes styles in complex objects.
FMX.ListBox.TListBoxItem.ApplyStyle inherits from FMX.Controls.TStyledControl.ApplyStyle. All content below this line refers to FMX.Controls.TStyledControl.ApplyStyle.
Customizes styles in complex objects.
TStyledControl descendants override it to apply styles in concordance with their primitive components.
Do not call ApplyStyle explicitly in an application. It is called by the ApplyStyleLookup method when object styles are updated.
For an example of an ApplyStyle implementation, see "TCalloutPanel:Style Contracts" in FireMonkey Component Design.
</summary></devnotes></procedure>
<procedure name="FreeStyle" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="69">
<devnotes><summary>
Frees the style of TStyledControl.
FMX.ListBox.TListBoxItem.FreeStyle inherits from FMX.Controls.TTextControl.FreeStyle. All content below this line refers to FMX.Controls.TTextControl.FreeStyle.
Frees the style of TStyledControl.
FreeStyle frees some TTextControl-specific style resources like TextObject and TextSettings, then calls the inherited TStyledControl.FreeStyle.
</summary></devnotes></procedure>
<function name="EnterChildren" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="70">
<parameters>
<parameter name="AObject" type="IControl"/>
<retval type="Boolean"/>
</parameters>
<devnotes><summary>
Checks whether the input is taken by the control or by its parent.
FMX.ListBox.TListBoxItem.EnterChildren inherits from FMX.Controls.TControl.EnterChildren. All content below this line refers to FMX.Controls.TControl.EnterChildren.
Checks whether the input is taken by the control or by its parent.
EnterChildren returns True if the input is taken directly by the control's parent, and False otherwise.
Usually, EnterChildren returns False. If the control is an item such as TListBoxItem, a TTreeViewItem, or TMenuItem, EnterChildren returns True.
</summary></devnotes></function>
<procedure name="DragOver" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="71">
<parameters>
<parameter name="Data" type="TDragObject" paramflags="const"/>
<parameter name="Point" type="TPointF" paramflags="const"/>
<parameter name="Operation" type="TDragOperation" paramflags="var"/>
</parameters>
<devnotes><summary>
OnDragOver event dispatcher.
FMX.ListBox.TListBoxItem.DragOver inherits from FMX.Controls.TControl.DragOver. All content below this line refers to FMX.Controls.TControl.DragOver.
OnDragOver event dispatcher.
Data specifies the dragged object.
Point specifies the current point of the mouse cursor within the client area of the control.
Operation is the operation parameter (None, Move, Copy, Link) that specifies the action to perform when an item is dragged over the object.
None is the default. No action takes place, it does not display any name.
Move - the word Move is displayed once an item is dragged over the object.
Copy - the word Copy is displayed once an item is dragged over the object.
Link - the word Link is displayed once an item is dragged over the object.
A control calls DragOver when a dragged object is over the control area.
Override the protected DragOver method to provide other responses when a dragged object is over the control area.
</summary></devnotes></procedure>
<procedure name="DragEnd" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="72">
<devnotes><summary>
OnDragEnd event dispatcher.
FMX.ListBox.TListBoxItem.DragEnd inherits from FMX.Controls.TControl.DragEnd. All content below this line refers to FMX.Controls.TControl.DragEnd.
OnDragEnd event dispatcher.
A control calls DragEnd when a dragging session ends.
Override the protected DragEnd method to provide other responses when the dragging session ends.
</summary></devnotes></procedure>
<procedure name="Paint" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="73">
<devnotes><summary>
Renders the control's surface.
FMX.ListBox.TListBoxItem.Paint inherits from FMX.Controls.TControl.Paint. All content below this line refers to FMX.Controls.TControl.Paint.
Renders the control's surface.
The Paint method is called by DoPaint when a control is being painted by the PaintTo method. Before DoPaint, Painting is called. AfterPaint is called immediately after.
FireMonkey internally calls Paint to paint the control when the window is being painted. You must not call Paint explicitly.
The base class TControl implements an empty Paint. The descendants of TControl override Paint to provide specific rendering of the respective controls.
For example, Paint methods in classes of the FMX.Objects unit draw and fill shapes using the properties defined in these classes. See the descriptions of these classes to find the properties of the respective shapes.
</summary></devnotes></procedure>
<function name="GetHeight" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="74">
<parameters>
<retval type="Single"/>
</parameters>
<devnotes><summary>
Getter function for the Height property.
FMX.ListBox.TListBoxItem.GetHeight inherits from FMX.Controls.TControl.GetHeight. All content below this line refers to FMX.Controls.TControl.GetHeight.
Getter function for the Height property.
</summary></devnotes></function>
<function name="GetWidth" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="75">
<parameters>
<retval type="Single"/>
</parameters>
<devnotes><summary>
Getter function for the Width property.
FMX.ListBox.TListBoxItem.GetWidth inherits from FMX.Controls.TControl.GetWidth. All content below this line refers to FMX.Controls.TControl.GetWidth.
Getter function for the Width property.
</summary></devnotes></function>
<procedure name="SetHeight" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="76">
<parameters>
<parameter name="Value" type="Single" paramflags="const"/>
</parameters>
<devnotes><summary>
Setter function for the Height property.
FMX.ListBox.TListBoxItem.SetHeight inherits from FMX.Controls.TControl.SetHeight. All content below this line refers to FMX.Controls.TControl.SetHeight.
Setter function for the Height property. Value specifies the new value of the Height property.
</summary></devnotes></procedure>
<function name="DoSetSize" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="77">
<parameters>
<parameter name="ASize" type="TControlSize" paramflags="const"/>
<parameter name="NewPlatformDefault" type="Boolean" paramflags="const"/>
<parameter name="ANewWidth" type="Single"/>
<parameter name="ANewHeight" type="Single"/>
<parameter name="ALastWidth" type="Single" paramflags="var"/>
<parameter name="ALastHeight" type="Single" paramflags="var"/>
<retval type="Boolean"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></function>
<procedure name="SelectBackground" visibility="protected" file="FMX.ListBox.pas" line="79">
<parameters>
<parameter name="Shape" type="TListBoxItem.TBackgroundShape" paramflags="const"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<procedure name="OnBitmapChanged" visibility="protected" file="FMX.ListBox.pas" line="80">
<parameters>
<parameter name="Sender" type="TObject"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<function name="StyledSettingsStored" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="81">
<parameters>
<retval type="Boolean"/>
</parameters>
<devnotes><summary>
Retrieves whether any of the default values of font properties that are stored in the StyledSettings property is changed.
FMX.ListBox.TListBoxItem.StyledSettingsStored inherits from FMX.Controls.TTextControl.StyledSettingsStored. All content below this line refers to FMX.Controls.TTextControl.StyledSettingsStored.
Retrieves whether any of the default values of font properties that are stored in the StyledSettings property is changed.
StyledSettingsStored retrieves whether StyledSettings needs to be stored in the .fmx form file, keeping the description of the FMX form.
StyledSettingsStored returns True if StyledSettings <> DefaultStyledSettings. The DefaultStyledSettings property is set during the style loading in the ApplyStyle method. See also AllStyledSettings.
</summary></devnotes></function>
<property name="Align" visibility="protected" read="FAlign" write="SetAlign" type="TAlignLayout" default="0" hoisted="true" file="FMX.ListBox.pas" line="82"><devnotes><summary>
Specifies the alignment options (top, left, client, and so on) of this control.
Use Align to automatically set the alignment of the current control. Setting Align to a value different than None can affect the position, size (height and width), and anchors of the control. By default, Align is set to None.
Descendants of TControl typically set the visibility and value for the Align property. For example, for TToolBar, Align defaults to TAlignLayout.Top.
To see the possible values for Align and their visible effects over the control, see FMX.Types.TAlignLayout.
Controls that have the Align or Anchors properties set can use a Scale that is different from the default (1,1), so that controls align together even when they have a custom scale.
</summary></devnotes></property>
<property name="RotationAngle" visibility="protected" read="GetRotationAngle" write="SetRotationAngle" type="Single" default="0" hoisted="true" file="FMX.ListBox.pas" line="83"><devnotes><summary>
Specifies the amount (in degrees) by which the control is rotated from the x-axis.
Positive angles correspond to clockwise rotation. For counterclockwise rotation, use negative values.
To set the rotation center, use RotationCenter.
</summary></devnotes></property>
<property name="RotationCenter" visibility="protected" read="GetRotationCenter" write="SetRotationCenter" type="TPosition" hoisted="true" file="FMX.ListBox.pas" line="84"><devnotes><summary>
Specifies the position of the pivot point of the control.
The coordinates of the rotation center take values in the range from 0 through 1. The point with the coordinates (0,0) corresponds to the upper-left corner of the control, the point with the coordinates (1,1) corresponds to the lower-right corner of the control. The default center of rotation is (0.5, 0.5).
Values outside of [0,0] and [1,1] can be clipped in some descendant classes.
To set the rotation angle, use RotationAngle.
</summary></devnotes></property>
<function name="GetTextSettingsClass" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="85">
<parameters>
<retval type="TTextSettingsInfo.TCustomTextSettingsClass"/>
</parameters>
<devnotes><summary>
Returns the class type that instance represents the used text settings.
FMX.ListBox.TListBoxItem.GetTextSettingsClass inherits from FMX.Controls.TTextControl.GetTextSettingsClass. All content below this line refers to FMX.Controls.TTextControl.GetTextSettingsClass.
Returns the class type that instance represents the used text settings.
GetTextSettingsClass returns the TTextSettingsInfo.TCustomTextSettingsClass (or its descendant) class reference. An instance of such class provides the DefaultTextSettings, TextSettings, StyledSettings, ResultingTextSettings, and other properties handling the text representation settings of a control.
You can override the method in descendant classes to modify the default behavior.
Typical implementations of GetTextSettingsClass returns the class declaring properties like the Font, FontColor, HorzAlign, and WordWrap. Some of these properties can be declared as published to be editable in the Object Inspector.
See Also
FMX.Controls.TTextSettingsInfo
FMX.Controls.TTextSettingsInfo.TCustomTextSettingsClass
FMX.Controls.TTextSettingsInfo.DefaultTextSettings
FMX.Controls.TTextSettingsInfo.TextSettings
FMX.Controls.TTextSettingsInfo.StyledSettings
FMX.Controls.TTextSettingsInfo.ResultingTextSettings
</summary></devnotes></function>
<function name="GetDefaultStyleLookupName" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="86">
<parameters>
<retval type="string"/>
</parameters>
<devnotes><summary>
Protected getter implementation for the DefaultStyleLookupName property.
FMX.ListBox.TListBoxItem.GetDefaultStyleLookupName inherits from FMX.Controls.TStyledControl.GetDefaultStyleLookupName. All content below this line refers to FMX.Controls.TStyledControl.GetDefaultStyleLookupName.
Protected getter implementation for the DefaultStyleLookupName property.
When you Create a styled FireMonkey component by extending an existing component, override this method, if you want your component to inherit styles from the parent component. See Step 2 - Implement a Property to Specify the Format: Inheriting Styles of the Parent Component for more information and example code.
</summary></devnotes></function>
<function name="DoGetDefaultStyleLookupName" visibility="protected" procflags="virtual" file="FMX.ListBox.pas" line="87">
<parameters>
<parameter name="Defaults" type="TListBoxItemStyleDefaults" paramflags="const"/>
<retval type="string"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></function>
<procedure name="ImagesChanged" visibility="protected" procflags="virtual" file="FMX.ListBox.pas" line="91">
<devnotes><summary>
Should be called when the component needs to redraw the image.
ImagesChanged should be called
when you change the Images reference to the TCustomImageList object or
the object itself or when you change the ImageIndex property.
</summary></devnotes>
</procedure>
<function name="ImageIndexStored" visibility="protected" procflags="virtual" file="FMX.ListBox.pas" line="94">
<devnotes><summary>
Returns True when the ImageIndex property needs to be stored in the fmx-file.
</summary></devnotes>
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<procedure name="SetVisible" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="95">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
<devnotes><summary>
Setter for the Visible property.
This method also unselects any items that are not visible.
</summary></devnotes></procedure>
<constructor name="Create" visibility="public" file="FMX.ListBox.pas" line="97">
<parameters>
<parameter name="AOwner" type="TComponent"/>
</parameters>
<devnotes><summary>
Allocates memory and constructs a safely initialized instance of a component.
Allocates memory and constructs a safely initialized instance of a component.
FMX.ListBox.TListBoxItem.Create inherits from System.Classes.TComponent.Create. All content below this line refers to System.Classes.TComponent.Create.
Allocates memory and constructs a safely initialized instance of a component.
All objects have a Create method that constructs the object. TComponent redefines Create so that, for components, Create also:
Establishes the relationship of a component and its Owner, as indicated by the AOwner parameter.
Sets the ComponentStyle property to csInheritable, meaning that the component can be inherited by a descendent form type.
It is not necessary to explicitly create components added in the Form Designer. These components are created automatically when the application is run, and they are destroyed when the application is closed.
For components created programmatically, that is, not created in the Form Designer, call Create and pass in an owner component as the AOwner parameter. The owner disposes of the component when it is destroyed. If the component is not owned, then use Free when it needs to be destroyed.
Tip: When passing in Self as the Owner parameter, consider what Self references. If a component creates another component in one of its methods, then Self refers to the first component and not the component being created, which is then owned by the first component.
Note: The TComponent constructor is virtual in part to allow polymorphic instantiation of class references. This is critical to the streaming system and to the Form Designer. Do not forget to use the override directive when declaring a new component's Create constructor.</summary></devnotes></constructor>
<destructor name="Destroy" visibility="public" file="FMX.ListBox.pas" line="98">
<parameters>
</parameters>
<devnotes><summary>
Disposes of the component and its owned components.
Disposes of the component and its owned components.
FMX.ListBox.TListBoxItem.Destroy inherits from System.Classes.TComponent.Destroy. All content below this line refers to System.Classes.TComponent.Destroy.
Disposes of the component and its owned components.
Do not call Destroy directly. Call Free instead. Free verifies that the component is not nil, and only then calls Destroy.
Never explicitly free a component in one of its own event handlers, nor free a component from the event handler of a component that it owns or contains.
To destroy a form, call its Release method. Release waits for all the form's event handlers and the event handlers of the form's components to finish executing before destroying the form.
Note: A form owns all the controls and nonvisual components that are placed on it in design mode. When it is freed, all of these components are automatically freed as well. By default, all forms are owned by the global Application object. When an application terminates, it frees the global Application object, which frees all forms. For objects that are not components, and for components created with a nil owner, be sure to call Free after finishing with the object; otherwise the memory allocated for the object will be lost until the application terminates.</summary></devnotes></destructor>
<property name="Data" visibility="public" read="FData" write="FData" type="TObject" file="FMX.ListBox.pas" line="99"><devnotes><summary>
Stores a Tvalue, which is a data structure that can store different kinds of data types.
FMX.ListBox.TListBoxItem.Data inherits from FMX.Types.TFmxObject.Data. All content below this line refers to FMX.Types.TFmxObject.Data.
Stores a Tvalue, which is a data structure that can store different kinds of data types.
Data has no predefined meaning. Although Data is used for LiveBinding, any succesor override this behavior. Then, the behaviour of Data is based on the type of its value.
Note: Do not use this member. It is for internal use only.
</summary></devnotes></property>
<function name="GetParentComponent" visibility="public" procflags="override" file="FMX.ListBox.pas" line="100">
<parameters>
<retval type="TComponent"/>
</parameters>
<devnotes><summary>
Returns the containing component.
Returns the containing component.
FMX.ListBox.TListBoxItem.GetParentComponent inherits from System.Classes.TComponent.GetParentComponent. All content below this line refers to System.Classes.TComponent.GetParentComponent.
Returns the containing component.
GetParentComponent returns a reference to the component that contains the current component, or nil if there is no container. Use HasParent to determine whether a component has a containing component.
For example, a button on a panel on a form returns the panel, the panel returns the form, and the form returns nil.
</summary></devnotes></function>
<procedure name="ApplyTriggerEffect" visibility="public" procflags="override" file="FMX.ListBox.pas" line="101">
<parameters>
<parameter name="AInstance" type="TFmxObject" paramflags="const"/>
<parameter name="ATrigger" type="string" paramflags="const"/>
</parameters>
<devnotes><summary>
Applies the specified mouse trigger effect to all the children of this FMX object that are of type TEffect.
FMX.ListBox.TListBoxItem.ApplyTriggerEffect inherits from FMX.Controls.TControl.ApplyTriggerEffect. All content below this line refers to FMX.Controls.TControl.ApplyTriggerEffect.
Applies the specified mouse trigger effect to all the children of this FMX object that are of type TEffect.
ApplyTriggerEffect iterates through all the children of this FMX object and, if one of them is of type TEffect, applies the mouse trigger given through the ATrigger parameter (which can be 'IsMouseOver', 'IsMouseOver', 'IsDragOver', and so on).
AInstance specifies the instance of the FMX object to which the trigger effect is applied.
</summary></devnotes></procedure>
<procedure name="SetIsSelectedInternal" visibility="public" file="FMX.ListBox.pas" line="103">
<devnotes><summary>
Processes the selection of an item.
Sets the value of the IsSelected property, triggers the selection animation and calls the ItemStateChanged method of the listbox selection controller.
The UserChange specifies whether the selection is initiated by an user action (as opposed to by a code call).
</summary></devnotes>
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
<parameter name="UserChange" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<property name="Font" visibility="public" read="GetFont" write="SetFont" type="TFont" hoisted="true" file="FMX.ListBox.pas" line="104"/>
<property name="TextAlign" visibility="public" read="GetTextAlign" write="SetTextAlign" type="TTextAlign" default="1" hoisted="true" file="FMX.ListBox.pas" line="105"/>
<property name="WordWrap" visibility="public" read="GetWordWrap" write="SetWordWrap" type="Boolean" default="0" hoisted="true" file="FMX.ListBox.pas" line="106"/>
<property name="Images" visibility="public" read="GetImages" type="TCustomImageList" file="FMX.ListBox.pas" line="108">
<devnotes><summary>
Defines the reference to a TCustomImageList list of images to be used to draw images on the component.
If the TCustomImageList list is empty, then Images is nil/null.
Call ImagesChanged when Images is changed.
</summary></devnotes>
</property>
<property name="AutoTranslate" visibility="published" read="FAutoTranslate" write="FAutoTranslate" type="Boolean" default="1" hoisted="true" file="FMX.ListBox.pas" line="110"/>
<property name="ClipChildren" visibility="published" read="FClipChildren" write="SetClipChildren" type="Boolean" default="0" hoisted="true" file="FMX.ListBox.pas" line="111"/>
<property name="ClipParent" visibility="published" read="FClipParent" write="FClipParent" type="Boolean" default="0" hoisted="true" file="FMX.ListBox.pas" line="112"/>
<property name="Cursor" visibility="published" read="GetCursor" write="SetCursor" type="TCursor" default="0" hoisted="true" file="FMX.ListBox.pas" line="113"/>
<property name="DragMode" visibility="published" read="GetDragMode" write="SetDragMode" type="TDragMode" default="0" hoisted="true" file="FMX.ListBox.pas" line="114"/>
<property name="EnableDragHighlight" visibility="published" read="FEnableDragHighlight" write="FEnableDragHighlight" type="Boolean" default="1" hoisted="true" file="FMX.ListBox.pas" line="115"/>
<property name="Selectable" visibility="published" read="FIsSelectable" write="SetSelectable" type="Boolean" default="1" file="FMX.ListBox.pas" line="116"><devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></property>
<property name="TextSettings" visibility="published" read="GetTextSettings" write="SetTextSettings" type="TTextSettings" hoisted="true" file="FMX.ListBox.pas" line="117"/>
<property name="StyledSettings" visibility="published" read="GetStyledSettings" write="SetStyledSettings" stored="StyledSettingsStored" type="TStyledSettings" hoisted="true" file="FMX.ListBox.pas" line="118"/>
<property name="Locked" visibility="published" read="FLocked" write="SetLocked" type="Boolean" default="0" hoisted="true" file="FMX.ListBox.pas" line="119"/>
<property name="Height" visibility="published" read="GetHeight" write="SetHeight" stored="False" type="Single" hoisted="true" file="FMX.ListBox.pas" line="120"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" stored="IsHelpContextStored" type="THelpContext" default="0" hoisted="true" file="FMX.ListBox.pas" line="121"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" stored="IsHelpContextStored" type="string" default="0" hoisted="true" file="FMX.ListBox.pas" line="122"/>
<property name="HelpType" visibility="published" read="FHelpType" write="FHelpType" type="THelpType" default="1" hoisted="true" file="FMX.ListBox.pas" line="123"/>
<property name="HitTest" visibility="published" read="FHitTest" write="SetHitTest" type="Boolean" default="0" hoisted="true" file="FMX.ListBox.pas" line="124"/>
<property name="IsChecked" visibility="published" read="FIsChecked" write="SetIsChecked" type="Boolean" default="0" file="FMX.ListBox.pas" line="125"><devnotes><summary>
Specifies whether the check box associated with the item is checked.
</summary></devnotes></property>
<property name="IsSelected" visibility="published" read="FIsSelected" write="SetIsSelected" type="Boolean" default="0" file="FMX.ListBox.pas" line="126"><devnotes><summary>
Specifies whether the item is selected.
If IsSelected is True, the item appears as selected inside its parent component.
</summary></devnotes></property>
<property name="ItemData" visibility="published" read="FItemData" write="SetItemData" type="TListBoxItemData" file="FMX.ListBox.pas" line="127"><devnotes><summary>
Specifies various data that can be attached to a TListBoxItem in order to be shown in the list box.
Use the ItemData property in order to attach various data to a list box item. This data can then be displayed in the list box.
ItemData has four sub-properties:
Accessory - lets you add to the selected list box item one of the following items:
Checkmark icon
Detail icon
More icon
No icon (this is the default)
Bitmap - lets you add a bitmap image to your item.
Detail - lets you add an additional text that describes your list box item.
Text - allows you to change the text displayed on your list box item.
In the picture above, two list box items are present in the list:
The first one has a bitmap image, additional text description and no accessory icon.
The second one has a bitmap image, additional text description and the Detail accessory icon.</summary></devnotes></property>
<property name="ImageIndex" visibility="published" read="GetImageIndex" write="SetImageIndex" stored="ImageIndexStored" type="TImageIndex" file="FMX.ListBox.pas" line="131">
<devnotes><summary>
Defines the zero-based index enumerating images in the Images list of images.
If you use a non-existing ImageIndex value to access an image in the Images list, then no image is retrieved and no exception is raised. The usual default value is -1. Call ImagesChanged when ImageIndex is changed.
</summary></devnotes>
</property>
<property name="Padding" visibility="published" read="GetPadding" write="SetPadding" type="TBounds" hoisted="true" file="FMX.ListBox.pas" line="132"/>
<property name="Opacity" visibility="published" read="FOpacity" write="SetOpacity" stored="IsOpacityStored" type="Single" hoisted="true" file="FMX.ListBox.pas" line="133"/>
<property name="Margins" visibility="published" read="GetMargins" write="SetMargins" type="TBounds" hoisted="true" file="FMX.ListBox.pas" line="134"/>
<property name="PopupMenu" visibility="published" read="FPopupMenu" write="SetPopupMenu" stored="IsPopupMenuStored" type="TCustomPopupMenu" hoisted="true" file="FMX.ListBox.pas" line="135"/>
<property name="Position" visibility="published" read="FPosition" write="SetPosition" stored="IsPositionStored" type="TPosition" hoisted="true" file="FMX.ListBox.pas" line="136"/>
<property name="Scale" visibility="published" read="GetScale" write="SetScale" type="TPosition" hoisted="true" file="FMX.ListBox.pas" line="137"/>
<property name="Size" visibility="published" read="FSize" write="SetSize" stored="IsSizeStored" type="TControlSize" hoisted="true" file="FMX.ListBox.pas" line="138"/>
<property name="StyleLookup" visibility="published" read="FStyleLookup" write="SetStyleLookup" type="string" default="0" hoisted="true" file="FMX.ListBox.pas" line="139"/>
<property name="TabOrder" visibility="published" read="GetTabOrder" write="SetTabOrder" type="TTabOrder" default="-1" hoisted="true" file="FMX.ListBox.pas" line="140"/>
<property name="TabStop" visibility="published" read="GetTabStop" write="SetTabStop" type="Boolean" default="1" hoisted="true" file="FMX.ListBox.pas" line="141"/>
<property name="Text" visibility="published" read="GetText" write="SetText" stored="TextStored" type="string" default="0" hoisted="true" file="FMX.ListBox.pas" line="142"/>
<property name="Width" visibility="published" read="GetWidth" write="SetWidth" stored="False" type="Single" hoisted="true" file="FMX.ListBox.pas" line="143"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" stored="VisibleStored" type="Boolean" default="1" hoisted="true" file="FMX.ListBox.pas" line="144"/>
<property name="ParentShowHint" visibility="published" read="FParentShowHint" write="SetParentShowHint" type="Boolean" default="1" hoisted="true" file="FMX.ListBox.pas" line="145"/>
<event name="OnApplyStyleLookup" visibility="published" read="FOnApplyStyleLookup" write="FOnApplyStyleLookup" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="147"/>
<event name="OnDragEnter" visibility="published" read="FOnDragEnter" write="FOnDragEnter" type="TDragEnterEvent" hoisted="true" file="FMX.ListBox.pas" line="149"/>
<event name="OnDragLeave" visibility="published" read="FOnDragLeave" write="FOnDragLeave" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="150"/>
<event name="OnDragOver" visibility="published" read="FOnDragOver" write="FOnDragOver" type="TDragOverEvent" hoisted="true" file="FMX.ListBox.pas" line="151"/>
<event name="OnDragDrop" visibility="published" read="FOnDragDrop" write="FOnDragDrop" type="TDragDropEvent" hoisted="true" file="FMX.ListBox.pas" line="152"/>
<event name="OnDragEnd" visibility="published" read="FOnDragEnd" write="FOnDragEnd" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="153"/>
<event name="OnMouseDown" visibility="published" read="FOnMouseDown" write="FOnMouseDown" type="TMouseEvent" hoisted="true" file="FMX.ListBox.pas" line="155"/>
<event name="OnMouseMove" visibility="published" read="FOnMouseMove" write="FOnMouseMove" type="TMouseMoveEvent" hoisted="true" file="FMX.ListBox.pas" line="156"/>
<event name="OnMouseUp" visibility="published" read="FOnMouseUp" write="FOnMouseUp" type="TMouseEvent" hoisted="true" file="FMX.ListBox.pas" line="157"/>
<event name="OnMouseWheel" visibility="published" read="FOnMouseWheel" write="FOnMouseWheel" type="TMouseWheelEvent" hoisted="true" file="FMX.ListBox.pas" line="158"/>
<event name="OnMouseEnter" visibility="published" read="FOnMouseEnter" write="FOnMouseEnter" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="159"/>
<event name="OnMouseLeave" visibility="published" read="FOnMouseLeave" write="FOnMouseLeave" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="160"/>
<event name="OnClick" visibility="published" read="FOnClick" write="SetOnClick" stored="OnClickStored" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="161"/>
<event name="OnPainting" visibility="published" read="FOnPainting" write="FOnPainting" type="TOnPaintEvent" hoisted="true" file="FMX.ListBox.pas" line="162"/>
<event name="OnPaint" visibility="published" read="FOnPaint" write="FOnPaint" type="TOnPaintEvent" hoisted="true" file="FMX.ListBox.pas" line="163"/>
<event name="OnResize" visibility="published" read="FOnResize" write="FOnResize" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="164"/>
<event name="OnResized" visibility="published" read="FOnResized" write="FOnResized" type="TNotifyEvent" hoisted="true" file="FMX.ListBox.pas" line="165"/>
</members>
<devnotes><summary>
A TListBoxItem is an item that is used in list box components.
The items in list boxes and combo boxes are of type TListBoxItem. To add an item to a list box or combo box, double-click the component or right-click the component and choose Add Item.
</summary></devnotes></class>
<class name="TListBoxItemData" file="FMX.ListBox.pas" line="170">
<members>
<enum name="TAccessory" visibility="public" alias="FMX.ListBox.TAccessory" file="FMX.ListBox.pas" line="172">
<element value="0" name="aNone" file="FMX.ListBox.pas" line="172"/>
<element value="1" name="aMore" file="FMX.ListBox.pas" line="172"/>
<element value="2" name="aDetail" file="FMX.ListBox.pas" line="172"/>
<element value="3" name="aCheckmark" file="FMX.ListBox.pas" line="172"/>
</enum>
<const name="StyleSelectorMore" visibility="class private" type="string" file="FMX.ListBox.pas" line="186">
<value>
accessorymore.Visible
</value>
</const>
<const name="StyleSelectorDetail" visibility="class private" type="string">
<value>
accessorydetail.Visible
</value>
</const>
<const name="StyleSelectorCheckmark" visibility="class private" type="string">
<value>
accessorycheckmark.Visible
</value>
</const>
<field name="FItem" type="TListBoxItem" visibility="private" size="4" offset="4" file="FMX.ListBox.pas" line="179">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<field name="FAccessory" type="TListBoxItemData.TAccessory" visibility="private" size="1" offset="8" file="FMX.ListBox.pas" line="180"/>
<procedure name="SetText" visibility="private" file="FMX.ListBox.pas" line="181">
<parameters>
<parameter name="Text" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="GetText" visibility="private" file="FMX.ListBox.pas" line="182">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetDetail" visibility="private" file="FMX.ListBox.pas" line="183">
<parameters>
<parameter name="Detail" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="GetDetail" visibility="private" file="FMX.ListBox.pas" line="184">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetBitmap" visibility="private" file="FMX.ListBox.pas" line="185">
<parameters>
<parameter name="Bitmap" type="TBitmap" paramflags="const"/>
</parameters>
</procedure>
<function name="GetBitmap" visibility="private" file="FMX.ListBox.pas" line="186">
<parameters>
<retval type="TBitmap"/>
</parameters>
</function>
<function name="GetAccessory" visibility="private" file="FMX.ListBox.pas" line="187">
<parameters>
<retval type="TListBoxItemData.TAccessory"/>
</parameters>
</function>
<procedure name="SetAccessory" visibility="private" file="FMX.ListBox.pas" line="188">
<parameters>
<parameter name="Accessory" type="TListBoxItemData.TAccessory" paramflags="const"/>
</parameters>
</procedure>
<constructor name="Create" visibility="public" file="FMX.ListBox.pas" line="190">
<parameters>
<parameter name="HostItem" type="TListBoxItem" paramflags="const"/>
</parameters>
</constructor>
<destructor name="Destroy" visibility="public" file="FMX.ListBox.pas" line="191">
<parameters>
</parameters>
</destructor>
<procedure name="Assign" visibility="public" procflags="override" file="FMX.ListBox.pas" line="192">
<parameters>
<parameter name="Source" type="TPersistent"/>
</parameters>
</procedure>
<procedure name="Disappear" visibility="public" file="FMX.ListBox.pas" line="193">
</procedure>
<property name="Text" visibility="published" read="GetText" write="SetText" stored="False" type="string" default="0" file="FMX.ListBox.pas" line="195"/>
<property name="Detail" visibility="published" read="GetDetail" write="SetDetail" type="string" default="0" file="FMX.ListBox.pas" line="196"/>
<property name="Accessory" visibility="published" read="GetAccessory" write="SetAccessory" type="TListBoxItemData.TAccessory" default="0" file="FMX.ListBox.pas" line="197"/>
<property name="Bitmap" visibility="published" read="GetBitmap" write="SetBitmap" type="TBitmap" file="FMX.ListBox.pas" line="198"/>
</members>
</class>
<enum name="TListStyle" file="FMX.ListBox.pas" line="203">
<element value="0" name="Vertical" file="FMX.ListBox.pas" line="203"/>
<element value="1" name="Horizontal" file="FMX.ListBox.pas" line="203"/>
</enum>
<enum name="TListGroupingKind" file="FMX.ListBox.pas" line="205">
<element value="0" name="Plain" file="FMX.ListBox.pas" line="205"/>
<element value="1" name="Grouped" file="FMX.ListBox.pas" line="205"/>
</enum>
<type name="TOnCompareListBoxItemEvent" file="FMX.ListBox.pas" line="207" procflags="closure">
</type>
<type name="TOnListBoxDragChange" file="FMX.ListBox.pas" line="208" procflags="closure">
</type>
<class name="TListBoxItemStyleDefaults" file="FMX.ListBox.pas" line="210">
<members>
<field name="FItemStyle" type="string" visibility="class private" size="4" offset="4" file="FMX.ListBox.pas" line="212"/>
<field name="FHeaderStyle" type="string" visibility="class private" size="4" offset="8" file="FMX.ListBox.pas" line="213"/>
<field name="FFooterStyle" type="string" visibility="class private" size="4" offset="12" file="FMX.ListBox.pas" line="214"/>
<field name="FListBox" type="TCustomListBox" visibility="class private" size="4" offset="16" file="FMX.ListBox.pas" line="215">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<function name="GetItemStyle" visibility="private" file="FMX.ListBox.pas" line="217">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetItemStyle" visibility="private" file="FMX.ListBox.pas" line="218">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="GetGroupHeaderStyle" visibility="private" file="FMX.ListBox.pas" line="219">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetGroupHeaderStyle" visibility="private" file="FMX.ListBox.pas" line="220">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="GetGroupFooterStyle" visibility="private" file="FMX.ListBox.pas" line="221">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetGroupFooterStyle" visibility="private" file="FMX.ListBox.pas" line="222">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<procedure name="RefreshListBox" visibility="private" file="FMX.ListBox.pas" line="223">
</procedure>
<constructor name="Create" visibility="private" file="FMX.ListBox.pas" line="224">
<parameters>
<parameter name="ListBox" type="TCustomListBox" paramflags="const"/>
</parameters>
</constructor>
<procedure name="Assign" visibility="public" procflags="override" file="FMX.ListBox.pas" line="226">
<parameters>
<parameter name="Source" type="TPersistent"/>
</parameters>
</procedure>
<property name="ListBox" visibility="public" read="FListBox" type="TCustomListBox" file="FMX.ListBox.pas" line="227"/>
<property name="ItemStyle" visibility="published" read="GetItemStyle" write="SetItemStyle" type="string" file="FMX.ListBox.pas" line="229"/>
<property name="GroupHeaderStyle" visibility="published" read="GetGroupHeaderStyle" write="SetGroupHeaderStyle" type="string" file="FMX.ListBox.pas" line="230"/>
<property name="GroupFooterStyle" visibility="published" read="GetGroupFooterStyle" write="SetGroupFooterStyle" type="string" file="FMX.ListBox.pas" line="231"/>
</members>
</class>
<enum name="TMultiSelectStyle" file="FMX.ListBox.pas" line="234">
<element value="0" name="None" file="FMX.ListBox.pas" line="234"/>
<element value="1" name="Default" file="FMX.ListBox.pas" line="234"/>
<element value="2" name="Extended" file="FMX.ListBox.pas" line="234"/>
</enum>
<class name="TCustomListBox" file="FMX.ListBox.pas" line="236">
<interfaces>
<implements name="IGlyph"/>
<implements name="ISearchResponder"/>
<implements name="{FMX.Controls}IInflatableContent<FMX.ListBox.TListBoxItem>"/>
<implements name="IItemsContainer"/>
</interfaces>
<members>
<const name="UnfocusedSelectionOpacity" visibility="private" type="Comp" file="FMX.ListBox.pas" line="238">
<value>
0.7
</value>
</const>
<const name="ExtendedSelectionOpacity" visibility="private" type="Comp" file="FMX.ListBox.pas" line="239">
<value>
0.7
</value>
</const>
<enum name="TStringsChangeOp" visibility="public" alias="FMX.ListBox.TStringsChangeOp" file="FMX.ListBox.pas" line="241">
<element value="0" name="Added" file="FMX.ListBox.pas" line="241"/>
<element value="1" name="Deleted" file="FMX.ListBox.pas" line="241"/>
<element value="2" name="Clear" file="FMX.ListBox.pas" line="241"/>
</enum>
<type name="TStringsChangedEvent" file="FMX.ListBox.pas" line="242" procflags="closure">
</type>
<type name="TItemClickEvent" file="FMX.ListBox.pas" line="243" procflags="closure">
</type>
<class name="TListBoxStrings" visibility="private" alias="FMX.ListBox.TListBoxStrings" file="FMX.ListBox.pas" line="245">
<members>
<field name="FListBox" type="TCustomListBox" visibility="private" size="4" offset="32" file="FMX.ListBox.pas" line="247">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<procedure name="ReadData" visibility="private" file="FMX.ListBox.pas" line="248">
<parameters>
<parameter name="Reader" type="TReader"/>
</parameters>
</procedure>
<procedure name="WriteData" visibility="private" file="FMX.ListBox.pas" line="249">
<parameters>
<parameter name="Writer" type="TWriter"/>
</parameters>
</procedure>
<procedure name="Put" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="251">
<parameters>
<parameter name="Index" type="Integer"/>
<parameter name="S" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="Get" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="252">
<parameters>
<parameter name="Index" type="Integer"/>
<retval type="string"/>
</parameters>
</function>
<function name="GetCount" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="253">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<function name="GetObject" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="254">
<parameters>
<parameter name="Index" type="Integer"/>
<retval type="TObject"/>
</parameters>
</function>
<procedure name="PutObject" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="255">
<parameters>
<parameter name="Index" type="Integer"/>
<parameter name="AObject" type="TObject"/>
</parameters>
</procedure>
<procedure name="SetUpdateState" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="256">
<parameters>
<parameter name="Updating" type="Boolean"/>
</parameters>
</procedure>
<procedure name="DefineProperties" visibility="protected" procflags="override" file="FMX.ListBox.pas" line="257">
<parameters>
<parameter name="Filer" type="TFiler"/>
</parameters>
</procedure>
<function name="Add" visibility="public" procflags="override" file="FMX.ListBox.pas" line="259">
<parameters>
<parameter name="S" type="string" paramflags="const"/>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="Clear" visibility="public" procflags="override" file="FMX.ListBox.pas" line="260">
</procedure>
<procedure name="Delete" visibility="public" procflags="override" file="FMX.ListBox.pas" line="261">
<parameters>
<parameter name="Index" type="Integer"/>
</parameters>
</procedure>
<procedure name="Exchange" visibility="public" procflags="override" file="FMX.ListBox.pas" line="262">
<parameters>
<parameter name="Index1" type="Integer"/>
<parameter name="Index2" type="Integer"/>
</parameters>
</procedure>
<function name="IndexOf" visibility="public" procflags="override" file="FMX.ListBox.pas" line="263">
<parameters>
<parameter name="S" type="string" paramflags="const"/>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="Insert" visibility="public" procflags="override" file="FMX.ListBox.pas" line="264">
<parameters>
<parameter name="Index" type="Integer"/>
<parameter name="S" type="string" paramflags="const"/>
</parameters>
</procedure>
</members>
</class>
<struct name="TGroup" visibility="private" alias="FMX.ListBox.TGroup" size="8" file="FMX.ListBox.pas" line="267">
<field name="First" type="Integer" visibility="public" size="4" offset="0" file="FMX.ListBox.pas" line="268"/>
<field name="Length" type="Integer" visibility="public" size="4" offset="4" file="FMX.ListBox.pas" line="269"/>
<constructor name="Create" visibility="public" file="FMX.ListBox.pas" line="270">
<parameters>
<parameter name="AFirst" type="Integer" paramflags="const"/>
<parameter name="ALength" type="Integer" paramflags="const"/>
</parameters>
</constructor>
</struct>
<class name="TGroups" visibility="private" alias="FMX.ListBox.TGroups" file="FMX.ListBox.pas" line="273">
<members>
<function name="FindGroup" visibility="public" file="FMX.ListBox.pas" line="275">
<parameters>
<parameter name="Index" type="Integer" paramflags="const"/>
<retval type="Integer"/>
</parameters>
</function>
</members>
</class>
<class name="TStyledSelection" visibility="private" alias="FMX.ListBox.TStyledSelection" file="FMX.ListBox.pas" line="282">
<members>
<field name="FListBox" type="TCustomListBox" visibility="private" size="4" offset="4" file="FMX.ListBox.pas" line="284"/>
<field name="FUnfocusedObjectsPool" type="TControlList" visibility="private" size="4" offset="8" file="FMX.ListBox.pas" line="285"/>
<field name="FFocusedObjectsPool" type="TControlList" visibility="private" size="4" offset="12" file="FMX.ListBox.pas" line="286"/>
<field name="FCurrentObjects" type="TControlList" visibility="private" size="4" offset="16" file="FMX.ListBox.pas" line="287"/>
<field name="FIsFocused" type="Boolean" visibility="private" size="1" offset="20" file="FMX.ListBox.pas" line="288"/>
<field name="FUnfocusedSelection" type="TControl" visibility="private" size="4" offset="24" file="FMX.ListBox.pas" line="290"/>
<field name="FFocusedSelection" type="TControl" visibility="private" size="4" offset="28" file="FMX.ListBox.pas" line="291"/>
<procedure name="SetIsFocused" visibility="private" file="FMX.ListBox.pas" line="292">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<function name="CreateSelectionControl" visibility="private" file="FMX.ListBox.pas" line="294">
<parameters>
<parameter name="AIsFocused" type="Boolean" paramflags="const"/>
<retval type="TControl"/>
</parameters>
</function>
<constructor name="Create" visibility="public" file="FMX.ListBox.pas" line="296">
<parameters>
<parameter name="AListBox" type="TCustomListBox" paramflags="const"/>
</parameters>
</constructor>
<destructor name="Destroy" visibility="public" file="FMX.ListBox.pas" line="297">
<parameters>
</parameters>
</destructor>
<procedure name="Realign" visibility="public" file="FMX.ListBox.pas" line="299">
<devnotes>
<summary>Aligns the style selection controls according to the passed areas.</summary>
</devnotes>
<parameters>
<parameter name="ASelectionRects" type="TList<System.Types.TRectF>" paramflags="const"/>
</parameters>
</procedure>
<procedure name="ClearPools" visibility="public" file="FMX.ListBox.pas" line="301">
<devnotes>
<summary>Clear all style selection controls for focused and unfocused states.</summary>
</devnotes>
</procedure>
<property name="UnfocusedSelection" visibility="public" read="FUnfocusedSelection" write="FUnfocusedSelection" type="TControl" file="FMX.ListBox.pas" line="304">
<devnotes>
<summary>The reference on style object that is used to create controls for unfocused selection.</summary>
</devnotes>
</property>
<property name="FocusedSelection" visibility="public" read="FFocusedSelection" write="FFocusedSelection" type="TControl" file="FMX.ListBox.pas" line="306">
<devnotes>
<summary>The reference on style object that is used to create controls for focused selection.</summary>
</devnotes>
</property>
<property name="IsFocused" visibility="public" read="FIsFocused" write="TStyledSelection.SetIsFocused" type="Boolean" file="FMX.ListBox.pas" line="307"/>
</members>
</class>
<field name="FBeingPainted" type="Boolean" visibility="class private" size="1" offset="1104" file="FMX.ListBox.pas" line="311"/>
<field name="FRealignRequested" type="Boolean" visibility="class private" size="1" offset="1105" file="FMX.ListBox.pas" line="312"/>
<field name="FUpdateGroupsRequested" type="Boolean" visibility="class private" size="1" offset="1106" file="FMX.ListBox.pas" line="313"/>
<field name="FToInflate" type="TList<FMX.ListBox.TListBoxItem>" visibility="class private" size="4" offset="1108" file="FMX.ListBox.pas" line="314"/>
<field name="FInflater" type="TContentInflater<FMX.ListBox.TListBoxItem>" visibility="class private" size="4" offset="1112" file="FMX.ListBox.pas" line="315"/>
<field name="FStringsChanged" type="TCustomListBox.TStringsChangedEvent" visibility="class private" size="8" offset="1120" file="FMX.ListBox.pas" line="316"/>
<field name="FOnItemClick" type="TCustomListBox.TItemClickEvent" visibility="class private" size="8" offset="1128" file="FMX.ListBox.pas" line="317"/>
<field name="FItemDown" type="TListBoxItem" visibility="class private" size="4" offset="1136" file="FMX.ListBox.pas" line="318">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<field name="FOnChange" type="TNotifyEvent" visibility="class private" size="8" offset="1144" file="FMX.ListBox.pas" line="319"/>
<field name="FShowCheckboxes" type="Boolean" visibility="class private" size="1" offset="1152" file="FMX.ListBox.pas" line="320"/>
<field name="FOnChangeCheck" type="TNotifyEvent" visibility="class private" size="8" offset="1160" file="FMX.ListBox.pas" line="321"/>
<field name="FSorted" type="Boolean" visibility="class private" size="1" offset="1168" file="FMX.ListBox.pas" line="322"/>
<field name="FOnCompare" type="TOnCompareListBoxItemEvent" visibility="class private" size="8" offset="1176" file="FMX.ListBox.pas" line="323"/>
<field name="FAlternatingRowBackground" type="Boolean" visibility="class private" size="1" offset="1184" file="FMX.ListBox.pas" line="324"/>
<field name="FAllowDrag" type="Boolean" visibility="class private" size="1" offset="1185" file="FMX.ListBox.pas" line="325"/>
<field name="FOnDragChange" type="TOnListBoxDragChange" visibility="class private" size="8" offset="1192" file="FMX.ListBox.pas" line="326"/>
<field name="FNoItemsContent" type="TContent" visibility="class private" size="4" offset="1200" file="FMX.ListBox.pas" line="327"/>
<field name="FHeaderCompartment" type="TContent" visibility="class private" size="4" offset="1204" file="FMX.ListBox.pas" line="328"/>
<field name="FFooterCompartment" type="TContent" visibility="class private" size="4" offset="1208" file="FMX.ListBox.pas" line="329"/>
<field name="FContentOverlay" type="TContent" visibility="class private" size="4" offset="1212" file="FMX.ListBox.pas" line="330"/>
<field name="FDefaultStyles" type="TListBoxItemStyleDefaults" visibility="class private" size="4" offset="1216" file="FMX.ListBox.pas" line="331"/>
<field name="FGroups" type="TCustomListBox.TGroups" visibility="class private" size="4" offset="1220" file="FMX.ListBox.pas" line="332"/>
<field name="FGroupingKind" type="TListGroupingKind" visibility="class private" size="1" offset="1224" file="FMX.ListBox.pas" line="333"/>
<field name="FClickEnable" type="Boolean" visibility="class private" size="1" offset="1225" file="FMX.ListBox.pas" line="334"/>
<field name="FSelection" type="TControl" visibility="class private" size="4" offset="1228" file="FMX.ListBox.pas" line="335"/>
<field name="FExtendedSelection" type="TControl" visibility="class private" size="4" offset="1232" file="FMX.ListBox.pas" line="336"/>
<field name="FFocusedSelection" type="TControl" visibility="class private" size="4" offset="1236" file="FMX.ListBox.pas" line="337"/>
<field name="FSelector" type="TListBoxSelector" visibility="class private" size="4" offset="1240" file="FMX.ListBox.pas" line="338"/>
<field name="FImageLink" type="TGlyphImageLink" visibility="class private" size="4" offset="1244" file="FMX.ListBox.pas" line="339"/>
<field name="FImages" type="TCustomImageList" visibility="class private" size="4" offset="1248" file="FMX.ListBox.pas" line="340">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<function name="GetInflatableItems" visibility="class private" file="FMX.ListBox.pas" line="341">
<parameters>
<retval type="TList<FMX.ListBox.TListBoxItem>"/>
</parameters>
</function>
<procedure name="CalcSelectionRects" visibility="class private" file="FMX.ListBox.pas" line="342">
<parameters>
<parameter name="SelRects" type="TList<System.Types.TRectF>" paramflags="const"/>
</parameters>
</procedure>
<procedure name="PerformInternalDrag" visibility="class private" file="FMX.ListBox.pas" line="343">
</procedure>
<function name="GetImages" visibility="class private" file="FMX.ListBox.pas" line="344">
<parameters>
<retval type="TCustomImageList">
<devnotes>
<summary> List of images. Base class that used in fire monkey without published properties </summary>
</devnotes>
</retval>
</parameters>
</function>
<procedure name="SetImages" visibility="class private" file="FMX.ListBox.pas" line="345">
<parameters>
<parameter name="Value" type="TCustomImageList" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageIndex" visibility="class private" file="FMX.ListBox.pas" line="347">
<parameters>
<retval type="TImageIndex"/>
</parameters>
</function>
<procedure name="SetImageIndex" visibility="class private" file="FMX.ListBox.pas" line="348">
<parameters>
<parameter name="Value" type="TImageIndex" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageList" visibility="class private" procflags="inline" file="FMX.ListBox.pas" line="349">
<parameters>
<retval type="TBaseImageList"/>
</parameters>
</function>
<procedure name="SetImageList" visibility="class private" file="FMX.ListBox.pas" line="350">
<parameters>
<parameter name="Value" type="TBaseImageList" paramflags="const"/>
</parameters>
</procedure>
<field name="FDragItem" type="TListBoxItem" visibility="private" size="4" offset="1252" file="FMX.ListBox.pas" line="354"/>
<field name="FFirstVisibleItem" type="Integer" visibility="private" size="4" offset="1256" file="FMX.ListBox.pas" line="355"/>
<field name="FLastVisibleItem" type="Integer" visibility="private" size="4" offset="1260" file="FMX.ListBox.pas" line="355"/>
<field name="FItems" type="TStrings" visibility="private" size="4" offset="1264" file="FMX.ListBox.pas" line="356"/>
<field name="FColumns" type="Integer" visibility="private" size="4" offset="1268" file="FMX.ListBox.pas" line="357"/>
<field name="FItemWidth" type="Single" visibility="private" size="4" offset="1272" file="FMX.ListBox.pas" line="358"/>
<field name="FItemHeight" type="Single" visibility="private" size="4" offset="1276" file="FMX.ListBox.pas" line="359"/>
<field name="FListStyle" type="TListStyle" visibility="private" size="1" offset="1280" file="FMX.ListBox.pas" line="360"/>
<field name="FOddFill" type="TBrush" visibility="private" size="4" offset="1284" file="FMX.ListBox.pas" line="361"/>
<field name="FContentInsets" type="TRectF" visibility="private" size="16" offset="1288" file="FMX.ListBox.pas" line="362"/>
<field name="FSelectionObjects" type="TCustomListBox.TStyledSelection" visibility="private" size="4" offset="1304" file="FMX.ListBox.pas" line="363"/>
<procedure name="IgnoreString" visibility="private" file="FMX.ListBox.pas" line="364">
<parameters>
<parameter name="Reader" type="TReader"/>
</parameters>
</procedure>
<procedure name="ReadMultiSelect" visibility="private" file="FMX.ListBox.pas" line="365">
<parameters>
<parameter name="Reader" type="TReader"/>
</parameters>
</procedure>
<function name="GetCount" visibility="private" file="FMX.ListBox.pas" line="366">