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

TdxWizardControlCustomButton Class

The base class for all classes that implement predefined wizard control buttons.

#Declaration

Delphi
TdxWizardControlCustomButton = class(
    TdxWizardControlCustomPersistent
)

#Remarks

This class provides the following members that allow you to:

  • Customize the caption and width of the button (Caption and Width);

  • Specify the button’s visibility and accessibility to end-users (Visible and Enabled);

  • Focus the button (Focused);

  • Assign an image and specify its position within the button (Glyph, ImageIndex, and GlyphAlignment);

  • Programmatically click the button (Click);

  • Improve application performance in the case of multiple setting changes that affect the button’s appearance (BeginUpdate and EndUpdate).

You do not need to create instances of this class. Access the corresponding TdxWizardControlCustomButton class descendants via the wizard control’s Buttons.Back, Buttons.Cancel, Buttons.Finish, Buttons.Help, and Buttons.Next properties.

See Also