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

TdxCustomAction Class

The base class for the action object provided by DevExpress controls.

#Declaration

Delphi
TdxCustomAction = class(
    TdxBasicAction
)

#Remarks

This class is the direct ancestor of all action classes provided by DevExpress components.

The TdxCustomAction class does not introduce any new public members, it adds the protected resource string extraction methods used internally to obtain the default captions and help hints of specific action objects. For detailed information on the public properties and methods provided by this class, refer to the TdxBasicAction class description.

All classes that implement custom action objects that can be used with DevExpress components must be derived from the TdxCustomAction class. You do not need to create instances of this class. Use its descendants instead.

See Also