Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSchedulerAction Class

The base class for all action classes that implement commands provided by the Scheduler control.

#Declaration

Delphi
TdxSchedulerAction = class(
    TdxCustomAction
)

#Remarks

The TdxSchedulerAction class provides members that allow you to:

  • Assign the caption for an action object linked to a UI element (Caption and AssignedValues.Caption);

  • Assign the custom help hint for an action object linked to a UI element (Hint and AssignedValues.Hint);

  • Execute a command associated with an action object in response to a certain event occurring in your application (Execute and ExecuteTarget);

  • Identify whether the UI elements associated with an action object can be updated (IsLocked);

  • Manage updating UI elements associated with an action object (BeginUpdate, CancelUpdate, and EndUpdate);

  • Specify a Scheduler control instance to which an action object belongs (Control);

  • Force updating a UI element linked to an action object (UpdateTarget).

You do not need to create instances of the TdxSchedulerAction class. Use its descendants instead.

See Also