ButtonFieldBase.ShowHeader Property

Note: This property is new in the .NET Framework version 2.0.

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:
virtual property bool ShowHeader {
	bool get () override;
	void set (bool value) override;
}
/** @property */
public boolean get_ShowHeader ()

/** @property */
public void set_ShowHeader (boolean value)

public override function get ShowHeader () : boolean

public override function set ShowHeader (value : boolean)

Property Value

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.

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.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: