DataGridColumn::InitializeCell Method
Provides the base implementation to reset the specified cell from a column derived from the DataGridColumn class to its initial state.
Assembly: System.Web (in System.Web.dll)
public: virtual void InitializeCell( TableCell^ cell, int columnIndex, ListItemType itemType )
Parameters
- cell
- Type: System.Web.UI.WebControls::TableCell
A TableCell that represents the cell to reset.
- columnIndex
- Type: System::Int32
The column number where the cell is located.
- itemType
- Type: System.Web.UI.WebControls::ListItemType
One of the ListItemType values.
The InitializeCell method provides the base implementation to reset the specified cell from a column derived from the DataGridColumn class to its initial state. This method is not called directly. Instead, this method is inherited by a derived column class, which can then be used to reset a cell in the column of the derived type. You can optionally override this method in the derived class to provide a custom initialization routine. This base implementation of the InitializeCell method is often called from the overridden method to reset properties common to all cells in columns derived from the DataGridColumn class.
In this implementation, the InitializeCell method resets only the header and footer cells. Other types of cells are not affected by this method.
When sorting is enabled (by setting the AllowSorting property to true), a LinkButton control is added to the header cell by default. This allows you to sort the column when the LinkButton control is clicked. If you specify an image for the header cell (by setting the HeaderImageUrl property), an ImageButton control is created instead.
When sorting is disabled, the text specified by the HeaderText property is displayed in the header cell. If you specify an image for the header cell (by setting the HeaderImageUrl property), an Image control is added to the header cell.
Because a browser will not display an empty cell, if an image in not displayed in the header cell and the HeaderText property is not set, a nonbreaking space HTML entity ( ) is displayed in the header cell. Similarly, if the footer cell does not have any content (if the FooterText property is not set), a nonbreaking space HTML entity is displayed in the footer cell.
Note |
|---|
This method is commonly used by control developers. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note