|
<< Click to display table of contents >> TrvAction |
TrvAction – the base class for all FMX Tools actions that work with a TRichViewEdit editor.
Unit FMX.RV.Actions;
Syntax
TrvAction = class (TrvCustomAction)
TObject TPersistent TComponent TBasicAction TContainedAction TCustomAction |
This is the base class for all FMX Tools actions that work with a TRichViewEdit editor. It is not used directly; instead, actions inherited from this class are used.
Unlike actions for VCL and Lazarus, FireMonkey actions do not work with the editor that currently has the input focus. The editor must be specified explicitly in the ControlPanel.Editor property.
An important requirement for all such actions is that they must be placed in the TActionList assigned to the ActionList property of a TRVControlPanel component. Only in this case are the action states (Enabled and Checked properties) updated correctly.
This class does not introduce any new properties or events.