Share via


WizardForm.EnableButtons Method (Boolean, Boolean, Boolean)

 

Specifies the state of the wizard's Back, Next, and Cancel buttons.

Namespace:   Microsoft.WindowsServerSolutions.Wizards
Assembly:  AdminCommon (in AdminCommon.dll)

Syntax

protected void EnableButtons(
    bool backEnabled,
    bool nextEnabled,
    bool cancelEnabled
)
protected:
void EnableButtons(
    bool backEnabled,
    bool nextEnabled,
    bool cancelEnabled
)
Protected Sub EnableButtons (
    backEnabled As Boolean,
    nextEnabled As Boolean,
    cancelEnabled As Boolean
)

Parameters

  • backEnabled
    Type: System.Boolean

    true to enable the Back button; otherwise, false.

  • nextEnabled
    Type: System.Boolean

    true to enable the Next button; otherwise, false.

  • cancelEnabled
    Type: System.Boolean

    true to enable the Cancel button; otherwise, false.

See Also

WizardForm.SetButtonsVisibility
WizardForm.WizardBackButton
WizardForm.WizardCancelButton
WizardForm.WizardNextButton
WizardForm Class
Microsoft.WindowsServerSolutions.Wizards Namespace

Return to top