ButtonFieldBase::ShowHeader Property

 

Gets or sets a value indicating whether the header section is displayed in a ButtonFieldBase object.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property bool ShowHeader {
	virtual bool get() override;
	virtual void set(bool value) override;
}

Property Value

Type: System::Boolean

true to show the header section; otherwise, false. The default is false.

Use the ShowHeader property to show or hide the header section of a ButtonFieldBase object. To show the header section, set the ShowHeader property to true.

System_CAPS_noteNote

Some data-bound controls (such as the GridView control) can show or hide only the entire header section of the control. These data-bound controls do not support the ShowHeader property for an individual button field. To show or hide the entire header section of a data-bound control (if available), use the ShowHeader property for the control.

The value of this property is stored in view state.

The following code example demonstrates how to use the ShowHeader property to display the header section of a ButtonField object in a DetailsView control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: