FMXBindNavigateAction¶
Qualified name: delphifmx.FMXBindNavigateAction
- class FMXBindNavigateAction¶
Bases:
ActionWrapper for Pascal class TFMXBindNavigateAction
Methods
TBasicAction.Execute() Generates an OnExecute event.
TFMXBindNavigateAction.ExecuteTarget(Target: Object) -> None Introduces an interface for invoking an action on a target client component or control.
TFMXBindNavigateAction.HandlesTarget(Target: Object) -> bool Introduces an interface for verifying that the type and state of a target component or control are appropriate for the action.
TBasicAction.Update() Provides an opportunity to execute centralized code when an application is idle.
TFMXBindNavigateAction.UpdateTarget(Target: Object) -> None Introduces an interface for a method of notifying a client when the action updates itself.
Attributes
Indicates the client component that caused this action to execute.
ActionListHolds the action list to which the action belongs.
AutoCheckControls whether the Checked property toggles when the action executes.
CaptionRepresents the caption of the action.
CategoryGroup or category where the action belongs.
CheckedIndicates whether client controls and menu items appear checked.
ClassNameReturns the TObject.ClassName
ComObjectSpecifies the interface reference implemented by the component.
ComponentCountReturns the owned component count
ComponentIndexIndicates the position of the component in its owner's Components property array.
ComponentStateDescribes the current state of the component, indicating when a component needs to avoid certain actions.
ComponentStyleGoverns the behavior of the component.
ComponentsReturns an iterator over the owned components
BaseLinkingBindSource:
DesignInfoContains information used by the Form designer.
DisableIfNoHandlerIndicates whether the action's clients should be disabled if no OnExecute event handler is found.
EnabledSpecifies the enabled state for the action.
GroupIndexIndicates a group of actions in one action list.
HelpContextKeeps the integer context ID that identifies the Help topic for the action.
HelpKeywordContains the keyword string that identifies the Help topic for the action.
HelpTypeKeeps whether to use the HelpContext or HelpKeyword property to identify the Help topic.
HideIfUnsupportedInterfaceDefines whether the UnSupported action can be visible and accessible.
HintStores the Help hint text.
ImageIndexStores an index in a list of images.
IndexSpecifies the index of the action in its action list.
NameSpecifies the name of the component as referenced in code.
ObserversIndicates the TObservers object added to the TComponent.
OnHintCallable[[str, bool], None]:
OwnerReturns the Component Owner
SecondaryShortCutsStores shortcuts (in addition to ShortCut) for triggering the action.
ShortCutShortcut that triggers the action.
ShortCutPressedSpecifies that the action is fired by pressing a keyboard key, not by clicking with the mouse.
StatusActionStores the status for an input field in an action.
SupportedDefines whether the action can work on the current platform and CPU architecture.
TagStores a NativeInt integral value as a part of a component.
TargetDefines the component for which the action is executed.
TextRepresents the caption of the action.
UnsupportedArchitecturesDefines the set of unsupported CPU architectures.
UnsupportedPlatformsDefines the set of unsupported OS platforms.
VCLComObjectRepresents information used internally by components that support COM.
VisibleStores whether the action representation is visible.
- ActionComponent¶
Indicates the client component that caused this action to execute.
- DataSource¶
BaseLinkingBindSource:
- Execute()¶
Generates an OnExecute event.
- ExecuteTarget(Target: Object) → None¶
Introduces an interface for invoking an action on a target client component or control. ExecuteTarget does nothing in TBasicAction. ExecuteTarget was introduced in TBasicAction so that descendants can override it to initiate the action on the target. For example, an edit action that performs copying might copy the contents of an edit control to the clipboard.
- HandlesTarget(Target: Object) → bool¶
Introduces an interface for verifying that the type and state of a target component or control are appropriate for the action. HandlesTarget does nothing in TBasicAction. HandlesTarget was introduced in TBasicAction so that descendants can override it to check the type and state of a target. HandlesTarget can verify any information about a target that is relevant for the action. HandlesTarget returns True if the target meets the specified criteria, False otherwise.
- Update()¶
Provides an opportunity to execute centralized code when an application is idle.
- UpdateTarget(Target: Object) → None¶
Introduces an interface for a method of notifying a client when the action updates itself. UpdateTarget does nothing in TBasicAction. UpdateTarget was introduced in TBasicAction so that descendants can override it to correspondingly update a target when the action updates.