Skip to main content

TdxWizardControlCustomButton Class

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

Declaration

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