FMX.ActnList.TCustomAction.Text
Delphi
property Text: string read GetText write SetText;
C++
__property System::UnicodeString Text = {read=GetText, write=SetText};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.ActnList.pas FMX.ActnList.hpp |
FMX.ActnList | TCustomAction |
Description
Represents the caption of the action.
Text holds the string that is used in the same way as the Caption of the action, when it is set. The value of Text is propagated to the action's clients.
Text is the same as Caption. You can use both Text and Caption, but descendant classes should only use the Text published property, so that the Object Inspector displays only the Text property, as in most FireMonkey components.