Wizard.HeaderTemplate Property

Definition

Gets or sets the template that is used to display the header area on the control.

public:
 virtual property System::Web::UI::ITemplate ^ HeaderTemplate { System::Web::UI::ITemplate ^ get(); void set(System::Web::UI::ITemplate ^ value); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
[System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard))]
public virtual System.Web.UI.ITemplate HeaderTemplate { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
[<System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard))>]
member this.HeaderTemplate : System.Web.UI.ITemplate with get, set
Public Overridable Property HeaderTemplate As ITemplate

Property Value

An ITemplate that contains the template for displaying the header area on the Wizard. The default is null.

Attributes

Remarks

Use the HeaderTemplate property to specify the custom content that is displayed for the header area on a Wizard control. Define the content by creating a template that specifies how the header area is rendered.

The custom content for the template is contained within the HeaderTemplate object. You can add custom content to the HeaderTemplate object either by using template-editing mode in design view or by defining the HeaderTemplate object inline using HeaderTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).

To access a control that is defined in a template programmatically, use the Controls collection of the Wizard object. You can also use the FindControl method of the Wizard object to find the control, if the control has an ID property specified.

Applies to

See also