CreateUserWizard.CreateUserButtonStyle Property

Definition

Gets a reference to a collection of properties that define the appearance of the Create User button.

public:
 property System::Web::UI::WebControls::Style ^ CreateUserButtonStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style CreateUserButtonStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.CreateUserButtonStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property CreateUserButtonStyle As Style

Property Value

A reference to a Style that contains the properties that define the appearance of the Create User button.

Attributes

Remarks

The CreateUserButtonStyle property defines the appearance of the Create User button in the CreateUserWizard control. This property is read-only; however, you can set the properties of the Style object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, CreateUserButtonStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, CreateUserButtonStyle.ForeColor).

Common settings include custom background color, text color, and font properties.

The style settings for the CreateUserButtonStyle property are merged with the style settings for the CreateUserWizard control. Any settings applied in the CreateUserButtonStyle property override the corresponding settings in the CreateUserWizard control.

The following CreateUserWizard style properties are overridden by CreateUserButtonStyle settings:

However, when you use templates to define the appearance of the CreateUserWizard control, the CreateUserButtonStyle property has no effect.

Applies to

See also