GridView.HeaderRow Property

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

Gets a GridViewRow object that represents the header row in a GridView control.

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

public:
virtual property GridViewRow^ HeaderRow {
	GridViewRow^ get ();
}
/** @property */
public GridViewRow get_HeaderRow ()

public function get HeaderRow () : GridViewRow

Property Value

A GridViewRow that represents the header row in a GridView control.

Use the HeaderRow property to programmatically access the GridViewRow object that represents the header row in a GridView control.

NoteNote

The HeaderRow property is available only after the GridView control creates the header row in the RowCreated event.

This property is commonly used when you need to programmatically manipulate the header row, for example, when adding custom content. Any modification to the HeaderRow property must be performed after the GridView control has been rendered; otherwise, the GridView control will overwrite any changes.

The following code example demonstrates how to use the HeaderRow property to programmatically change the font color of the header row based on the sort direction.

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: