-
-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathFMX.Controls.xml
7196 lines (6710 loc) · 445 KB
/
FMX.Controls.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.Controls" platform="Win32">
<interface name="IStyleBookOwner" GUID="{BA1AE6C6-FCF7-43E2-92AA-2869FF203309}" ancestor="IInterface" file="FMX.Controls.pas" line="31">
<function name="GetStyleBook" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="33">
<parameters>
<retval type="TStyleBook"/>
</parameters>
</function>
<procedure name="SetStyleBook" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="34">
<parameters>
<parameter name="Value" type="TStyleBook" paramflags="const"/>
</parameters>
</procedure>
<property name="StyleBook" visibility="public" read="GetStyleBook" write="SetStyleBook" type="TStyleBook" file="FMX.Controls.pas" line="35"/>
</interface>
<interface name="IScene" GUID="{16DB110E-DA7D-4E75-BC2D-999FA12E45F5}" ancestor="IStyleBookOwner" file="FMX.Controls.pas" line="38">
<procedure name="AddUpdateRect" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="40">
<parameters>
<parameter name="R" type="TRectF" paramflags="const"/>
</parameters>
</procedure>
<function name="GetUpdateRectsCount" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="41">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<function name="GetUpdateRect" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="42">
<parameters>
<parameter name="Index" type="Integer" paramflags="const"/>
<retval type="TRectF"/>
</parameters>
</function>
<function name="GetObject" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="43">
<parameters>
<retval type="TFmxObject"/>
</parameters>
</function>
<function name="GetCanvas" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="44">
<parameters>
<retval type="TCanvas"/>
</parameters>
</function>
<function name="GetSceneScale" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="45">
<parameters>
<retval type="Single"/>
</parameters>
</function>
<function name="LocalToScreen" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="47">
<devnotes>
<summary>Converts a point from the scene coordinate system to the screen coordinate system.</summary>
</devnotes>
<parameters>
<parameter name="AScenePoint" type="TPointF" paramflags="const"/>
<retval type="TPointF"/>
</parameters>
</function>
<function name="ScreenToLocal" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="49">
<devnotes>
<summary>Converts a point from the screen coordinate system to the scene coordinate system.</summary>
</devnotes>
<parameters>
<parameter name="AScreenPoint" type="TPointF" paramflags="const"/>
<retval type="TPointF"/>
</parameters>
</function>
<procedure name="ChangeScrollingState" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="50">
<parameters>
<parameter name="AControl" type="TControl" paramflags="const"/>
<parameter name="AActive" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="DisableUpdating" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="52">
<devnotes>
<summary>Disable Scene's updating</summary>
</devnotes>
</procedure>
<procedure name="EnableUpdating" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="54">
<devnotes>
<summary>Enable Scene's updating</summary>
</devnotes>
</procedure>
<property name="Canvas" visibility="public" read="GetCanvas" type="TCanvas" file="FMX.Controls.pas" line="55"/>
</interface>
<class name="EInvalidSceneUpdatingPairCall" file="FMX.Controls.pas" line="60">
<ancestor name="Exception" namespace="System.SysUtils">
<methodref name="Create@" visibility="class private" procflags="class constructor noself">
</methodref>
<methodref name="Destroy@" visibility="class private" procflags="class destructor noself">
</methodref>
<methodref name="SetInnerException" visibility="protected">
</methodref>
<methodref name="SetStackInfo" visibility="protected">
</methodref>
<methodref name="GetStackTrace" visibility="protected">
</methodref>
<methodref name="RaisingException" visibility="protected" procflags="virtual">
</methodref>
<methodref name="Create" visibility="public" procflags="constructor">
</methodref>
<methodref name="CreateFmt" visibility="public" procflags="constructor">
</methodref>
<methodref name="CreateRes" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateRes" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateResFmt" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateResFmt" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateHelp" visibility="public" procflags="constructor">
</methodref>
<methodref name="CreateFmtHelp" visibility="public" procflags="constructor">
</methodref>
<methodref name="CreateResHelp" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateResHelp" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateResFmtHelp" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="CreateResFmtHelp" visibility="public" procflags="constructor overload">
</methodref>
<methodref name="Destroy" visibility="public" procflags="destructor override">
</methodref>
<methodref name="GetBaseException" visibility="public" procflags="virtual">
</methodref>
<methodref name="ToString" visibility="public" procflags="override">
</methodref>
<propertyref name="BaseException" visibility="public">
</propertyref>
<propertyref name="HelpContext" visibility="public">
</propertyref>
<propertyref name="InnerException" visibility="public">
</propertyref>
<propertyref name="Message" visibility="public">
</propertyref>
<propertyref name="StackTrace" visibility="public">
</propertyref>
<propertyref name="StackInfo" visibility="public">
</propertyref>
<methodref name="RaiseOuterException" visibility="public" procflags="static">
</methodref>
<methodref name="ThrowOuterException" visibility="public" procflags="static">
</methodref>
<ancestor name="TObject" namespace="System">
<methodref name="Create" visibility="public" procflags="constructor">
</methodref>
<methodref name="Free" visibility="public">
</methodref>
<methodref name="DisposeOf" visibility="public" procflags="inline">
</methodref>
<methodref name="InitInstance" visibility="public" procflags="class">
</methodref>
<methodref name="CleanupInstance" visibility="public">
</methodref>
<methodref name="ClassType" visibility="public" procflags="inline">
</methodref>
<methodref name="ClassName" visibility="public" procflags="class">
</methodref>
<methodref name="ClassNameIs" visibility="public" procflags="class">
</methodref>
<methodref name="ClassParent" visibility="public" procflags="class inline">
</methodref>
<methodref name="ClassInfo" visibility="public" procflags="class inline">
</methodref>
<methodref name="InstanceSize" visibility="public" procflags="class inline">
</methodref>
<methodref name="InheritsFrom" visibility="public" procflags="class">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodName" visibility="public" procflags="class">
</methodref>
<methodref name="QualifiedClassName" visibility="public" procflags="class">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="GetInterface" visibility="public">
</methodref>
<methodref name="GetInterfaceEntry" visibility="public" procflags="class">
</methodref>
<methodref name="GetInterfaceTable" visibility="public" procflags="class inline">
</methodref>
<methodref name="UnitName" visibility="public" procflags="class">
</methodref>
<methodref name="UnitScope" visibility="public" procflags="class">
</methodref>
<methodref name="Equals" visibility="public" procflags="virtual">
</methodref>
<methodref name="GetHashCode" visibility="public" procflags="virtual">
</methodref>
<methodref name="ToString" visibility="public" procflags="virtual">
</methodref>
<methodref name="SafeCallException" visibility="public" procflags="virtual">
</methodref>
<methodref name="AfterConstruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="BeforeDestruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="Dispatch" visibility="public" procflags="virtual">
</methodref>
<methodref name="DefaultHandler" visibility="public" procflags="virtual">
</methodref>
<methodref name="NewInstance" visibility="public" procflags="class virtual">
</methodref>
<methodref name="FreeInstance" visibility="public" procflags="virtual">
</methodref>
<methodref name="Destroy" visibility="public" procflags="destructor virtual">
</methodref>
<methodref name="GetDisposed" visibility="protected" procflags="inline">
</methodref>
<methodref name="CheckDisposed" visibility="protected" procflags="inline">
</methodref>
<propertyref name="Disposed" visibility="protected">
</propertyref>
</ancestor>
</ancestor>
</class>
<interface name="IDesignerControl" GUID="{C57A701D-E4B5-4711-BFA4-716E2164A929}" ancestor="IInterface" file="FMX.Controls.pas" line="63">
</interface>
<interface name="IHintReceiver" GUID="{533671CF-86C5-489E-B32A-724AF8464DCE}" ancestor="IInterface" file="FMX.Controls.pas" line="69">
<devnotes>
<summary>Controls that can respond to hint-related events must implement
this interface.</summary>
</devnotes>
<procedure name="TriggerOnHint" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="72">
<devnotes>
<summary>This method is called when a hint is triggered.</summary>
</devnotes>
</procedure>
</interface>
<interface name="IHintRegistry" GUID="{8F3B3C46-450B-4A8C-800F-FD47538244C3}" ancestor="IInterface" file="FMX.Controls.pas" line="77">
<devnotes>
<summary>A class needs to implement this interface in order to be able to
register IHintReceiver instances.</summary>
</devnotes>
<procedure name="TriggerHints" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="80">
<devnotes>
<summary>Triggers the TriggerOnHint method of all the objects that are registered in this registry.</summary>
</devnotes>
</procedure>
<procedure name="RegisterHintReceiver" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="82">
<devnotes>
<summary>Registers a new receiver.</summary>
</devnotes>
<parameters>
<parameter name="AReceiver" type="IHintReceiver" paramflags="const"/>
</parameters>
</procedure>
<procedure name="UnregisterHintReceiver" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="84">
<devnotes>
<summary>Unregisters a receiver.</summary>
</devnotes>
<parameters>
<parameter name="AReceiver" type="IHintReceiver" paramflags="const"/>
</parameters>
</procedure>
</interface>
<class name="THint" file="FMX.Controls.pas" line="88">
<ancestor name="TObject" namespace="System">
<methodref name="Create" visibility="public" procflags="constructor">
</methodref>
<methodref name="Free" visibility="public">
</methodref>
<methodref name="DisposeOf" visibility="public" procflags="inline">
</methodref>
<methodref name="InitInstance" visibility="public" procflags="class">
</methodref>
<methodref name="CleanupInstance" visibility="public">
</methodref>
<methodref name="ClassType" visibility="public" procflags="inline">
</methodref>
<methodref name="ClassName" visibility="public" procflags="class">
</methodref>
<methodref name="ClassNameIs" visibility="public" procflags="class">
</methodref>
<methodref name="ClassParent" visibility="public" procflags="class inline">
</methodref>
<methodref name="ClassInfo" visibility="public" procflags="class inline">
</methodref>
<methodref name="InstanceSize" visibility="public" procflags="class inline">
</methodref>
<methodref name="InheritsFrom" visibility="public" procflags="class">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodName" visibility="public" procflags="class">
</methodref>
<methodref name="QualifiedClassName" visibility="public" procflags="class">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="GetInterface" visibility="public">
</methodref>
<methodref name="GetInterfaceEntry" visibility="public" procflags="class">
</methodref>
<methodref name="GetInterfaceTable" visibility="public" procflags="class inline">
</methodref>
<methodref name="UnitName" visibility="public" procflags="class">
</methodref>
<methodref name="UnitScope" visibility="public" procflags="class">
</methodref>
<methodref name="Equals" visibility="public" procflags="virtual">
</methodref>
<methodref name="GetHashCode" visibility="public" procflags="virtual">
</methodref>
<methodref name="ToString" visibility="public" procflags="virtual">
</methodref>
<methodref name="SafeCallException" visibility="public" procflags="virtual">
</methodref>
<methodref name="AfterConstruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="BeforeDestruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="Dispatch" visibility="public" procflags="virtual">
</methodref>
<methodref name="DefaultHandler" visibility="public" procflags="virtual">
</methodref>
<methodref name="NewInstance" visibility="public" procflags="class virtual">
</methodref>
<methodref name="FreeInstance" visibility="public" procflags="virtual">
</methodref>
<methodref name="Destroy" visibility="public" procflags="destructor virtual">
</methodref>
<methodref name="GetDisposed" visibility="protected" procflags="inline">
</methodref>
<methodref name="CheckDisposed" visibility="protected" procflags="inline">
</methodref>
<propertyref name="Disposed" visibility="protected">
</propertyref>
</ancestor>
<members>
<classref name="THintClass" alias="FMX.Controls.THintClass" ref="THint" file="FMX.Controls.pas" line="90"/>
<field name="FClassRegistry" type="TArray<FMX.Controls.THint.THintClass>" visibility="private" varflags="class" file="FMX.Controls.pas" line="92"/>
<field name="FHint" type="string" visibility="protected" size="4" offset="4" file="FMX.Controls.pas" line="95">
<devnotes>
<summary>Field to store the hint.</summary>
</devnotes>
</field>
<field name="FEnabled" type="Boolean" visibility="protected" size="1" offset="8" file="FMX.Controls.pas" line="97">
<devnotes>
<summary>Field to store the status (enabled or not) of the hint.</summary>
</devnotes>
</field>
<procedure name="SetEnabled" visibility="protected" procflags="virtual" file="FMX.Controls.pas" line="99">
<devnotes>
<summary>Method that updates the state of enabled.</summary>
</devnotes>
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<constructor name="Create" visibility="public" file="FMX.Controls.pas" line="103">
<devnotes>
<summary>Constructor. A constructor needs the native handle of the view that holds the hint. To give an example,
in MS Windows is the HWND of the native window.</summary>
</devnotes>
<parameters>
<parameter name="AHandle" type="TWindowHandle" paramflags="const"/>
</parameters>
</constructor>
<procedure name="SetHint" visibility="public" procflags="virtual" file="FMX.Controls.pas" line="105">
<devnotes>
<summary>Sets the full hint string.</summary>
</devnotes>
<parameters>
<parameter name="AString" type="string" paramflags="const"/>
</parameters>
</procedure>
<function name="GetHint" visibility="public" file="FMX.Controls.pas" line="107">
<devnotes>
<summary>Gets the full hint string.</summary>
</devnotes>
<parameters>
<retval type="string"/>
</parameters>
</function>
<function name="GetShortText" visibility="public" file="FMX.Controls.pas" line="110">
<devnotes>
<summary>The hint can follows the following pattern: 'A short Text| A Long text'. It means, the hint can hold
two texts separated by the '|' character. This method returns the short text of the hint.</summary>
</devnotes>
<parameters>
<retval type="string"/>
</parameters>
</function>
<function name="GetLongText" visibility="public" file="FMX.Controls.pas" line="112">
<devnotes>
<summary>Returns the long text of the hint.</summary>
</devnotes>
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetPosition" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="114">
<devnotes>
<summary>If the specific implementation supports it, this metods places the hint in the given position.</summary>
</devnotes>
<parameters>
<parameter name="X" type="Single" paramflags="const"/>
<parameter name="Y" type="Single" paramflags="const"/>
</parameters>
</procedure>
<procedure name="RegisterClass" visibility="public" procflags="class" file="FMX.Controls.pas" line="117">
<devnotes>
<summary>Register a class to create hint instances. When a new THint instance is needed, the registered classes are invoked
to create the needed instance.</summary>
</devnotes>
<parameters>
<parameter name="AClass" type="THint.THintClass" paramflags="const"/>
</parameters>
</procedure>
<function name="CreateNewInstance" visibility="public" procflags="class" file="FMX.Controls.pas" line="120">
<devnotes>
<summary>Returns an instance created by the first available registered class. This method can return nil if there are no classes
registered or none of the registered classes can create a THint instance.</summary>
</devnotes>
<parameters>
<parameter name="AHandle" type="TWindowHandle" paramflags="const"/>
<retval type="THint">
<devnotes>
<summary>The base class for an object that can manage a hint.</summary>
</devnotes>
</retval>
</parameters>
</function>
<function name="ContainsRegistredHintClasses" visibility="public" procflags="class" file="FMX.Controls.pas" line="122">
<devnotes>
<summary>Returns True if there are some THint class registered.</summary>
</devnotes>
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<property name="Enabled" visibility="public" read="FEnabled" write="SetEnabled" type="Boolean" file="FMX.Controls.pas" line="125">
<devnotes>
<summary>If this property is true, the hint can be displayed, if it is False, the hint won't be displayed.</summary>
</devnotes>
</property>
<procedure name="Create@" visibility="class private" procflags="class constructor noself" generated="true">
</procedure>
<procedure name="Destroy@" visibility="class private" procflags="class destructor noself" generated="true">
</procedure>
</members>
</class>
<class name="TCustomControlAction" file="FMX.Controls.pas" line="129">
<members>
<field name="FPopupMenu" type="TCustomPopupMenu" visibility="private" size="4" offset="184" file="FMX.Controls.pas" line="131">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<procedure name="SetPopupMenu" visibility="private" file="FMX.Controls.pas" line="132">
<parameters>
<parameter name="Value" type="TCustomPopupMenu" paramflags="const"/>
</parameters>
</procedure>
<procedure name="Notification" visibility="protected" procflags="override" file="FMX.Controls.pas" line="134">
<parameters>
<parameter name="AComponent" type="TComponent"/>
<parameter name="Operation" type="TOperation"/>
</parameters>
<devnotes><summary>
Responds when components are created or destroyed.
FMX.Controls.TCustomControlAction.Notification inherits from System.Classes.TBasicAction.Notification. All content below this line refers to System.Classes.TBasicAction.Notification.
Responds when components are created or destroyed.
Do not call the Notification method in an application. Notification is called automatically when the component specified by AComponent is about to be inserted or removed, as specified by Operation.
TBasicAction overrides the System.Classes.TComponent.Notification method. Notification checks whether the component specified by AComponent is the same as the component stored in the ActionComponent property and whether it is about to be freed. If so, Notification sets the ActionComponent property to nil (Delphi) or NULL (C++).
</summary></devnotes></procedure>
<constructor name="Create" visibility="public" file="FMX.Controls.pas" line="136">
<parameters>
<parameter name="AOwner" type="TComponent"/>
</parameters>
<devnotes><summary>
Instantiates and initializes a FireMonkey TCustomAction object.
FMX.Controls.TCustomControlAction.Create inherits from FMX.ActnList.TCustomAction.Create. All content below this line refers to FMX.ActnList.TCustomAction.Create.
Instantiates and initializes a FireMonkey TCustomAction object.
Applications do not need to call the constructor directly. Actions are created automatically when you add them to an action list component using New Action in the Action List editor at design time.
If you want to create an action at run time, assign a TActionList component to its ActionList property after calling Create.
AOwner is the component that is responsible for freeing the action. It becomes the value of the Owner property.
Create calls an inherited System.Actions.TContainedAction.Create constructor and then initializes the Supported property with True .
</summary></devnotes></constructor>
<property name="PopupMenu" visibility="public" read="FPopupMenu" write="SetPopupMenu" type="TCustomPopupMenu" file="FMX.Controls.pas" line="137"><devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></property>
</members>
<devnotes><summary>
TCustomControlAction is the base class for the actions that can be associated with some of the controls.
You can add a control action to a control by setting the Action property of the control, if it is supported. In the Object Inspector choose New Standard Action > No Category > TControl Action for the Action property.
</summary></devnotes></class>
<class name="TControlAction" file="FMX.Controls.pas" line="142">
<members>
<property name="AutoCheck" visibility="published" read="FAutoCheck" write="SetAutoCheck" type="Boolean" default="0" hoisted="true" file="FMX.Controls.pas" line="144"/>
<property name="Text" visibility="published" read="GetText" write="SetText" type="string" default="0" hoisted="true" file="FMX.Controls.pas" line="145"/>
<property name="Checked" visibility="published" read="FChecked" write="SetChecked" type="Boolean" default="0" hoisted="true" file="FMX.Controls.pas" line="146"/>
<property name="Enabled" visibility="published" read="FEnabled" write="SetEnabled" type="Boolean" default="1" hoisted="true" file="FMX.Controls.pas" line="147"/>
<property name="GroupIndex" visibility="published" read="FGroupIndex" write="SetGroupIndex" type="Integer" default="0" hoisted="true" file="FMX.Controls.pas" line="148"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" type="THelpContext" default="0" hoisted="true" file="FMX.Controls.pas" line="149"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" type="string" default="0" hoisted="true" file="FMX.Controls.pas" line="150"/>
<property name="HelpType" visibility="published" read="FHelpType" write="SetHelpType" type="THelpType" default="0" hoisted="true" file="FMX.Controls.pas" line="151"/>
<property name="Hint" visibility="published" read="FHint" write="SetHint" type="string" default="0" hoisted="true" file="FMX.Controls.pas" line="152"/>
<property name="ImageIndex" visibility="published" read="FImageIndex" write="SetImageIndex" type="TImageIndex" default="-1" hoisted="true" file="FMX.Controls.pas" line="153"/>
<property name="ShortCut" visibility="published" read="FShortCut" write="SetShortCut" type="TShortCut" default="0" hoisted="true" file="FMX.Controls.pas" line="154"/>
<property name="SecondaryShortCuts" visibility="published" read="GetSecondaryShortCuts" write="SetSecondaryShortCuts" stored="IsSecondaryShortCutsStored" type="TCustomShortCutList" hoisted="true" file="FMX.Controls.pas" line="155"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" type="Boolean" default="1" hoisted="true" file="FMX.Controls.pas" line="156"/>
<property name="UnsupportedArchitectures" visibility="published" read="FUnsupportedArchitectures" write="SetUnsupportedArchitectures" type="TArchitectures" default="0" hoisted="true" file="FMX.Controls.pas" line="157"/>
<property name="UnsupportedPlatforms" visibility="published" read="FUnsupportedPlatforms" write="SetUnsupportedPlatforms" type="TPlatforms" default="0" hoisted="true" file="FMX.Controls.pas" line="158"/>
<event name="OnExecute" visibility="published" read="FOnExecute" write="SetOnExecute" type="TNotifyEvent" hoisted="true" file="FMX.Controls.pas" line="159"/>
<event name="OnHint" visibility="published" read="FOnHint" write="FOnHint" type="THintEvent" hoisted="true" file="FMX.Controls.pas" line="160"/>
<event name="OnUpdate" visibility="published" read="FOnUpdate" write="FOnUpdate" type="TNotifyEvent" hoisted="true" file="FMX.Controls.pas" line="161"/>
<property name="PopupMenu" visibility="published" read="FPopupMenu" write="SetPopupMenu" type="TCustomPopupMenu" hoisted="true" file="FMX.Controls.pas" line="162"/>
</members>
</class>
<class name="TControlActionLink" file="FMX.Controls.pas" line="167">
<ancestor name="TActionLink" namespace="FMX.ActnList">
<methodref name="UpdateImages" visibility="private"/>
<methodref name="AssignClient" visibility="protected" procflags="override"/>
<methodref name="SetAction" visibility="protected" procflags="override"/>
<methodref name="IsCaptionLinked" visibility="protected" procflags="override"/>
<methodref name="IsCheckedLinked" visibility="protected" procflags="override"/>
<methodref name="IsEnabledLinked" visibility="protected" procflags="override"/>
<methodref name="IsGroupIndexLinked" visibility="protected" procflags="override"/>
<methodref name="IsOnExecuteLinked" visibility="protected" procflags="override"/>
<methodref name="IsShortCutLinked" visibility="protected" procflags="override"/>
<methodref name="IsVisibleLinked" visibility="protected" procflags="override"/>
<methodref name="IsImageIndexLinked" visibility="protected" procflags="override"/>
<methodref name="SetCaption" visibility="protected" procflags="override"/>
<methodref name="SetChecked" visibility="protected" procflags="override"/>
<methodref name="SetGroupIndex" visibility="protected" procflags="override"/>
<methodref name="SetImageIndex" visibility="protected" procflags="override"/>
<methodref name="Change" visibility="protected" procflags="override"/>
<propertyref name="Glyph" visibility="protected">
</propertyref>
<methodref name="IsViewActionClient" visibility="public"/>
<propertyref name="Client" visibility="public"/>
<propertyref name="Images" visibility="public">
</propertyref>
<propertyref name="CaptionLinked" visibility="public"/>
<propertyref name="HintLinked" visibility="public">
</propertyref>
<propertyref name="CheckedLinked" visibility="public"/>
<propertyref name="EnabledLinked" visibility="public"/>
<propertyref name="GroupIndexLinked" visibility="public"/>
<propertyref name="ShortCutLinked" visibility="public"/>
<propertyref name="VisibleLinked" visibility="public"/>
<propertyref name="OnExecuteLinked" visibility="public"/>
<ancestor name="TContainedActionLink" namespace="System.Actions">
<methodref name="DefaultIsLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsCaptionLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsCheckedLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsEnabledLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsGroupIndexLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsHelpContextLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsHelpLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsHintLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsImageIndexLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsShortCutLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsVisibleLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsStatusActionLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetAutoCheck" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetCaption" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetChecked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetEnabled" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetGroupIndex" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetHelpContext" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetHelpKeyword" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetHelpType" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetHint" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetImageIndex" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetShortCut" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetVisible" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetStatusAction" visibility="protected" procflags="virtual">
</methodref>
<ancestor name="TBasicActionLink" namespace="System.Classes">
<methodref name="AssignClient" visibility="protected" procflags="virtual">
</methodref>
<methodref name="Change" visibility="protected" procflags="virtual">
</methodref>
<methodref name="IsOnExecuteLinked" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetAction" visibility="protected" procflags="virtual">
</methodref>
<methodref name="SetOnExecute" visibility="protected" procflags="virtual">
</methodref>
<methodref name="Create" visibility="public" procflags="constructor virtual">
</methodref>
<methodref name="Destroy" visibility="public" procflags="destructor override">
</methodref>
<methodref name="Execute" visibility="public" procflags="virtual">
</methodref>
<methodref name="Update" visibility="public" procflags="virtual">
</methodref>
<propertyref name="Action" visibility="public">
</propertyref>
<eventref name="OnChange" visibility="public">
</eventref>
<ancestor name="TObject" namespace="System">
<methodref name="Create" visibility="public" procflags="constructor">
</methodref>
<methodref name="Free" visibility="public">
</methodref>
<methodref name="DisposeOf" visibility="public" procflags="inline">
</methodref>
<methodref name="InitInstance" visibility="public" procflags="class">
</methodref>
<methodref name="CleanupInstance" visibility="public">
</methodref>
<methodref name="ClassType" visibility="public" procflags="inline">
</methodref>
<methodref name="ClassName" visibility="public" procflags="class">
</methodref>
<methodref name="ClassNameIs" visibility="public" procflags="class">
</methodref>
<methodref name="ClassParent" visibility="public" procflags="class inline">
</methodref>
<methodref name="ClassInfo" visibility="public" procflags="class inline">
</methodref>
<methodref name="InstanceSize" visibility="public" procflags="class inline">
</methodref>
<methodref name="InheritsFrom" visibility="public" procflags="class">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodAddress" visibility="public" procflags="class overload">
</methodref>
<methodref name="MethodName" visibility="public" procflags="class">
</methodref>
<methodref name="QualifiedClassName" visibility="public" procflags="class">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="FieldAddress" visibility="public" procflags="overload">
</methodref>
<methodref name="GetInterface" visibility="public">
</methodref>
<methodref name="GetInterfaceEntry" visibility="public" procflags="class">
</methodref>
<methodref name="GetInterfaceTable" visibility="public" procflags="class inline">
</methodref>
<methodref name="UnitName" visibility="public" procflags="class">
</methodref>
<methodref name="UnitScope" visibility="public" procflags="class">
</methodref>
<methodref name="Equals" visibility="public" procflags="virtual">
</methodref>
<methodref name="GetHashCode" visibility="public" procflags="virtual">
</methodref>
<methodref name="ToString" visibility="public" procflags="virtual">
</methodref>
<methodref name="SafeCallException" visibility="public" procflags="virtual">
</methodref>
<methodref name="AfterConstruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="BeforeDestruction" visibility="public" procflags="virtual">
</methodref>
<methodref name="Dispatch" visibility="public" procflags="virtual">
</methodref>
<methodref name="DefaultHandler" visibility="public" procflags="virtual">
</methodref>
<methodref name="NewInstance" visibility="public" procflags="class virtual">
</methodref>
<methodref name="FreeInstance" visibility="public" procflags="virtual">
</methodref>
<methodref name="Destroy" visibility="public" procflags="destructor virtual">
</methodref>
<methodref name="GetDisposed" visibility="protected" procflags="inline">
</methodref>
<methodref name="CheckDisposed" visibility="protected" procflags="inline">
</methodref>
<propertyref name="Disposed" visibility="protected">
</propertyref>
</ancestor>
</ancestor>
</ancestor>
</ancestor>
<members>
<function name="GetClient" visibility="private" file="FMX.Controls.pas" line="169">
<parameters>
<retval type="TControl"/>
</parameters>
</function>
<procedure name="AssignClient" visibility="protected" procflags="override" file="FMX.Controls.pas" line="171">
<parameters>
<parameter name="AClient" type="TObject"/>
</parameters>
</procedure>
<function name="IsEnabledLinked" visibility="protected" procflags="override" file="FMX.Controls.pas" line="172">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="IsHelpLinked" visibility="protected" procflags="override" file="FMX.Controls.pas" line="173">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="IsHintLinked" visibility="protected" procflags="override" file="FMX.Controls.pas" line="174">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="IsVisibleLinked" visibility="protected" procflags="override" file="FMX.Controls.pas" line="175">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="IsOnExecuteLinked" visibility="protected" procflags="override" file="FMX.Controls.pas" line="176">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="IsPopupMenuLinked" visibility="protected" procflags="virtual" file="FMX.Controls.pas" line="177">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="DoShowHint" visibility="protected" procflags="virtual" file="FMX.Controls.pas" line="179">
<devnotes>
<summary>This method is invoked to allow a link to customize a Hint that is going to be displayed.</summary>
</devnotes>
<parameters>
<parameter name="HintStr" type="string" paramflags="var"/>
<retval type="Boolean"/>
</parameters>
</function>
<procedure name="SetHint" visibility="protected" procflags="override" file="FMX.Controls.pas" line="181">
<devnotes>
<summary>This method sets the string of the hint.</summary>
</devnotes>
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetEnabled" visibility="protected" procflags="override" file="FMX.Controls.pas" line="182">
<parameters>
<parameter name="Value" type="Boolean"/>
</parameters>
</procedure>
<procedure name="SetHelpContext" visibility="protected" procflags="override" file="FMX.Controls.pas" line="183">
<parameters>
<parameter name="Value" type="THelpContext"/>
</parameters>
</procedure>
<procedure name="SetHelpKeyword" visibility="protected" procflags="override" file="FMX.Controls.pas" line="184">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetHelpType" visibility="protected" procflags="override" file="FMX.Controls.pas" line="185">
<parameters>
<parameter name="Value" type="THelpType"/>
</parameters>
</procedure>
<procedure name="SetVisible" visibility="protected" procflags="override" file="FMX.Controls.pas" line="186">
<parameters>
<parameter name="Value" type="Boolean"/>
</parameters>
</procedure>
<procedure name="SetOnExecute" visibility="protected" procflags="override" file="FMX.Controls.pas" line="187">
<parameters>
<parameter name="Value" type="TNotifyEvent"/>
</parameters>
</procedure>
<procedure name="SetPopupMenu" visibility="protected" procflags="virtual" file="FMX.Controls.pas" line="188">
<parameters>
<parameter name="Value" type="TCustomPopupMenu" paramflags="const"/>
</parameters>
</procedure>
<property name="Client" visibility="public" read="GetClient" type="TControl" file="FMX.Controls.pas" line="190"/>
</members>
</class>
<class name="TCaret" file="FMX.Controls.pas" line="193">
<members>
<const name="FMXFlasher" visibility="private" type="string">
<value>
FMXFlasher
</value>
</const>
<function name="FlasherName" visibility="public" procflags="class override" file="FMX.Controls.pas" line="197">
<parameters>
<retval type="string"/>
</parameters>
</function>
<property name="Color" visibility="published" read="FColor" write="SetColor" type="TAlphaColor" default="0" hoisted="true" file="FMX.Controls.pas" line="199"/>
<property name="Interval" visibility="published" read="FInterval" write="SetInterval" type="TFlasherInterval" default="0" hoisted="true" file="FMX.Controls.pas" line="200"/>
<property name="Width" visibility="published" read="GetWidth" write="SetWidth" type="Word" default="0" hoisted="true" file="FMX.Controls.pas" line="201"/>
</members>
</class>
<enum name="TEnumControlsResult" alias="FMX.Types.TEnumProcResult" file="FMX.Controls.pas" line="206">
<element value="0" name="Continue" file="FMX.Types.pas" line="9842"/>
<element value="1" name="Discard" file="FMX.Types.pas" line="9842"/>
<element value="2" name="Stop" file="FMX.Types.pas" line="9842"/>
</enum>
<anonMethod name="TEnumControlsRef" file="FMX.Controls.pas" line="208">
<procedure name="Invoke" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="208">
<parameters>
<parameter name="AControl" type="TControl" paramflags="const"/>
<parameter name="Done" type="Boolean" paramflags="var"/>
</parameters>
</procedure>
</anonMethod>
<type name="TOnPaintEvent" file="FMX.Controls.pas" line="212" procflags="closure">
</type>
<type name="TCustomSceneAddRectEvent" file="FMX.Controls.pas" line="214" procflags="closure">
</type>
<enum name="TPaintStage" file="FMX.Controls.pas" line="216">
<element value="0" name="All" file="FMX.Controls.pas" line="216"/>
<element value="1" name="Background" file="FMX.Controls.pas" line="216"/>
<element value="2" name="Text" file="FMX.Controls.pas" line="216"/>
</enum>
<enum name="TControlType" file="FMX.Controls.pas" line="218">
<element value="0" name="Styled" file="FMX.Controls.pas" line="218"/>
<element value="1" name="Platform" file="FMX.Controls.pas" line="218"/>
</enum>
<helper name="TControlTypeHelper" for="TControlType" file="FMX.Controls.pas" line="221">
<devnotes>
<summary>Helper for TControlType.</summary>
</devnotes>
<members>
<function name="ToString" visibility="public" procflags="helper" file="FMX.Controls.pas" line="224">
<devnotes>
<summary>Returns string presentation of value of this type</summary>
</devnotes>
<parameters>
<retval type="string"/>
</parameters>
</function>
</members>
</helper>
<interface name="IControlTypeSupportable" GUID="{0B538F5C-98AC-4F86-AAF1-9979B2F40B90}" ancestor="IInterface" file="FMX.Controls.pas" line="232">
<devnotes>
<summary>
The marker for TControl component, which supports native control implementation. Use this interface to mark
the component that can use the native OS implementation. The FMX platform implementation may use it for
the better manipulation of focus management.
</summary>
</devnotes>
<procedure name="SetControlType" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="234">
<parameters>
<parameter name="AControlType" type="TControlType" paramflags="const"/>
</parameters>
</procedure>
<function name="GetControlType" visibility="public" procflags="abstract virtual" file="FMX.Controls.pas" line="235">
<parameters>
<retval type="TControlType"/>
</parameters>
</function>
<property name="ControlType" visibility="public" read="GetControlType" write="SetControlType" type="TControlType" file="FMX.Controls.pas" line="236"/>
</interface>
<class name="TControl" file="FMX.Controls.pas" line="239">
<interfaces>
<implements name="ITriggerEffect"/>
<implements name="ITriggerAnimation"/>
<implements name="ITabStopController"/>
<implements name="IGestureControl"/>
<implements name="IEffectContainer"/>
<implements name="IAlignableObject"/>
<implements name="IRotatedControl"/>
<implements name="IAlignRoot"/>
<implements name="IContainerObject"/>
<implements name="IControl"/>
</interfaces>
<members>
<enum name="TDelayedEvent" visibility="private" alias="FMX.Controls.TDelayedEvent" file="FMX.Controls.pas" line="242">
<element value="0" name="Resize" file="FMX.Controls.pas" line="242"/>
<element value="1" name="Resized" file="FMX.Controls.pas" line="242"/>
</enum>
<const name="InitialControlsCapacity" visibility="private" type="Integer" file="FMX.Controls.pas" line="244">
<value>
$A
</value>
</const>
<const name="DefaultTouchTargetExpansion" visibility="public" type="Integer" file="FMX.Controls.pas" line="246">
<value>
$6
</value>
</const>
<const name="DefaultDisabledOpacity" visibility="public" type="Comp" file="FMX.Controls.pas" line="247">
<value>
0.6
</value>
</const>
<const name="DesignBorderColor" visibility="public" type="Integer" file="FMX.Controls.pas" line="248">
<value>
$A0909090
</value>
</const>
<field name="FPaintStage" type="TPaintStage" visibility="private" varflags="class" file="FMX.Controls.pas" line="250"/>
<field name="FOnMouseUp" type="TMouseEvent" visibility="class private" size="8" offset="128" file="FMX.Controls.pas" line="252"/>
<field name="FOnMouseDown" type="TMouseEvent" visibility="class private" size="8" offset="136" file="FMX.Controls.pas" line="253"/>
<field name="FOnMouseMove" type="TMouseMoveEvent" visibility="class private" size="8" offset="144" file="FMX.Controls.pas" line="254"/>
<field name="FOnMouseWheel" type="TMouseWheelEvent" visibility="class private" size="8" offset="152" file="FMX.Controls.pas" line="255"/>
<field name="FOnClick" type="TNotifyEvent" visibility="class private" size="8" offset="160" file="FMX.Controls.pas" line="256"/>
<field name="FOnDblClick" type="TNotifyEvent" visibility="class private" size="8" offset="168" file="FMX.Controls.pas" line="257"/>
<field name="FHitTest" type="Boolean" visibility="class private" size="1" offset="176" file="FMX.Controls.pas" line="258"/>
<field name="FClipChildren" type="Boolean" visibility="class private" size="1" offset="177" file="FMX.Controls.pas" line="259"/>
<field name="FAutoCapture" type="Boolean" visibility="class private" size="1" offset="178" file="FMX.Controls.pas" line="260"/>
<field name="FPadding" type="TBounds" visibility="class private" size="4" offset="180" file="FMX.Controls.pas" line="261"/>
<field name="FMargins" type="TBounds" visibility="class private" size="4" offset="184" file="FMX.Controls.pas" line="262"/>
<field name="FTempCanvas" type="TCanvas" visibility="class private" size="4" offset="188" file="FMX.Controls.pas" line="263"/>
<field name="FRotationAngle" type="Single" visibility="class private" size="4" offset="192" file="FMX.Controls.pas" line="264"/>
<field name="FPosition" type="TPosition" visibility="class private" size="4" offset="196" file="FMX.Controls.pas" line="265"/>
<field name="FScale" type="TPosition" visibility="class private" size="4" offset="200" file="FMX.Controls.pas" line="266"/>
<field name="FSkew" type="TPosition" visibility="class private" size="4" offset="204" file="FMX.Controls.pas" line="267"/>
<field name="FRotationCenter" type="TPosition" visibility="class private" size="4" offset="208" file="FMX.Controls.pas" line="268"/>
<field name="FCanFocus" type="Boolean" visibility="class private" size="1" offset="212" file="FMX.Controls.pas" line="269"/>
<field name="FOnCanFocus" type="TCanFocusEvent" visibility="class private" size="8" offset="216" file="FMX.Controls.pas" line="270"/>
<field name="FOnEnter" type="TNotifyEvent" visibility="class private" size="8" offset="224" file="FMX.Controls.pas" line="271"/>
<field name="FOnExit" type="TNotifyEvent" visibility="class private" size="8" offset="232" file="FMX.Controls.pas" line="272"/>
<field name="FClipParent" type="Boolean" visibility="class private" size="1" offset="240" file="FMX.Controls.pas" line="273"/>
<field name="FOnMouseLeave" type="TNotifyEvent" visibility="class private" size="8" offset="248" file="FMX.Controls.pas" line="274"/>
<field name="FOnMouseEnter" type="TNotifyEvent" visibility="class private" size="8" offset="256" file="FMX.Controls.pas" line="275"/>
<field name="FOnPaint" type="TOnPaintEvent" visibility="class private" size="8" offset="264" file="FMX.Controls.pas" line="276"/>
<field name="FOnPainting" type="TOnPaintEvent" visibility="class private" size="8" offset="272" file="FMX.Controls.pas" line="277"/>
<field name="FCursor" type="TCursor" visibility="class private" size="2" offset="280" file="FMX.Controls.pas" line="278"/>
<field name="FInheritedCursor" type="TCursor" visibility="class private" size="2" offset="282" file="FMX.Controls.pas" line="279"/>
<field name="FDragMode" type="TDragMode" visibility="class private" size="1" offset="284" file="FMX.Controls.pas" line="280"/>
<field name="FEnableDragHighlight" type="Boolean" visibility="class private" size="1" offset="285" file="FMX.Controls.pas" line="281"/>
<field name="FOnDragEnter" type="TDragEnterEvent" visibility="class private" size="8" offset="288" file="FMX.Controls.pas" line="282"/>
<field name="FOnDragDrop" type="TDragDropEvent" visibility="class private" size="8" offset="296" file="FMX.Controls.pas" line="283"/>
<field name="FOnDragLeave" type="TNotifyEvent" visibility="class private" size="8" offset="304" file="FMX.Controls.pas" line="284"/>
<field name="FOnDragOver" type="TDragOverEvent" visibility="class private" size="8" offset="312" file="FMX.Controls.pas" line="285"/>
<field name="FOnDragEnd" type="TNotifyEvent" visibility="class private" size="8" offset="320" file="FMX.Controls.pas" line="286"/>
<field name="FIsDragOver" type="Boolean" visibility="class private" size="1" offset="328" file="FMX.Controls.pas" line="287"/>
<field name="FOnKeyDown" type="TKeyEvent" visibility="class private" size="8" offset="336" file="FMX.Controls.pas" line="288"/>
<field name="FOnKeyUp" type="TKeyEvent" visibility="class private" size="8" offset="344" file="FMX.Controls.pas" line="289"/>
<field name="FOnTap" type="TTapEvent" visibility="class private" size="8" offset="352" file="FMX.Controls.pas" line="290"/>
<field name="FHint" type="string" visibility="class private" size="4" offset="360" file="FMX.Controls.pas" line="291"/>
<field name="FActionHint" type="string" visibility="class private" size="4" offset="364" file="FMX.Controls.pas" line="292"/>
<field name="FShowHint" type="Boolean" visibility="class private" size="1" offset="368" file="FMX.Controls.pas" line="293"/>
<field name="FPopupMenu" type="TCustomPopupMenu" visibility="class private" size="4" offset="372" file="FMX.Controls.pas" line="294"/>
<field name="FRecalcEnabled" type="Boolean" visibility="class private" size="1" offset="376" file="FMX.Controls.pas" line="295"/>
<field name="FEnabled" type="Boolean" visibility="class private" size="1" offset="377" file="FMX.Controls.pas" line="295"/>
<field name="FAbsoluteEnabled" type="Boolean" visibility="class private" size="1" offset="378" file="FMX.Controls.pas" line="295"/>
<field name="FTabList" type="TTabList" visibility="class private" size="4" offset="380" file="FMX.Controls.pas" line="296"/>
<field name="FOnResize" type="TNotifyEvent" visibility="class private" size="8" offset="384" file="FMX.Controls.pas" line="297"/>
<field name="FOnResized" type="TNotifyEvent" visibility="class private" size="8" offset="392" file="FMX.Controls.pas" line="298"/>
<field name="FDisableEffect" type="Boolean" visibility="class private" size="1" offset="400" file="FMX.Controls.pas" line="299"/>
<field name="FAcceptsControls" type="Boolean" visibility="class private" size="1" offset="401" file="FMX.Controls.pas" line="300"/>
<field name="FControls" type="TControlList" visibility="class private" size="4" offset="404" file="FMX.Controls.pas" line="301"/>
<field name="FEnableExecuteAction" type="Boolean" visibility="class private" size="1" offset="408" file="FMX.Controls.pas" line="302"/>
<field name="FCanParentFocus" type="Boolean" visibility="class private" size="1" offset="409" file="FMX.Controls.pas" line="303"/>
<field name="FMinClipHeight" type="Single" visibility="class private" size="4" offset="412" file="FMX.Controls.pas" line="304"/>
<field name="FMinClipWidth" type="Single" visibility="class private" size="4" offset="416" file="FMX.Controls.pas" line="305"/>
<field name="FSmallSizeControl" type="Boolean" visibility="class private" size="1" offset="420" file="FMX.Controls.pas" line="306"/>
<field name="FTouchTargetExpansion" type="TBounds" visibility="class private" size="4" offset="424" file="FMX.Controls.pas" line="307"/>
<field name="FOnDeactivate" type="TNotifyEvent" visibility="class private" size="8" offset="432" file="FMX.Controls.pas" line="308"/>
<field name="FOnActivate" type="TNotifyEvent" visibility="class private" size="8" offset="440" file="FMX.Controls.pas" line="309"/>
<field name="FSimpleTransform" type="Boolean" visibility="class private" size="1" offset="448" file="FMX.Controls.pas" line="310"/>
<field name="FFixedSize" type="TSize" visibility="class private" size="8" offset="452" file="FMX.Controls.pas" line="311"/>
<field name="FEffects" type="TList<FMX.Effects.TEffect>" visibility="class private" size="4" offset="460" file="FMX.Controls.pas" line="312"/>
<field name="FDisabledOpacity" type="Single" visibility="class private" size="4" offset="464" file="FMX.Controls.pas" line="313"/>
<field name="FParentControl" type="TControl" visibility="class private" size="4" offset="468" file="FMX.Controls.pas" line="314">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<field name="FParentContent" type="IContent" visibility="class private" size="4" offset="472" file="FMX.Controls.pas" line="315"/>
<field name="FUpdateRect" type="TRectF" visibility="class private" size="16" offset="476" file="FMX.Controls.pas" line="316"/>
<field name="FTabStop" type="Boolean" visibility="class private" size="1" offset="492" file="FMX.Controls.pas" line="317"/>
<field name="FDisableDisappear" type="Integer" visibility="class private" size="4" offset="496" file="FMX.Controls.pas" line="318"/>