Wizard.HeaderStyle Property

Definition

Gets a reference to a Style object that defines the settings for the header area on the control.

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

Property Value

A reference to the Style that defines the style settings for the header area on the Wizard.

Attributes

Remarks

The HeaderStyle property defines the appearance for the header area on the Wizard control. The HeaderStyle property is read-only; however, you can set the properties of the Style object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, CancelButtonStyle-ForeColor). You can set a property programmatically in the form Property.Subproperty (for example, CancelButtonStyle.ForeColor).

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

Applies to

See also