DataGridColumn.InitializeCell(TableCell, Int32, ListItemType) Method

Definition

Provides the base implementation to reset the specified cell from a column derived from the DataGridColumn class to its initial state.

public:
 virtual void InitializeCell(System::Web::UI::WebControls::TableCell ^ cell, int columnIndex, System::Web::UI::WebControls::ListItemType itemType);
public virtual void InitializeCell (System.Web.UI.WebControls.TableCell cell, int columnIndex, System.Web.UI.WebControls.ListItemType itemType);
abstract member InitializeCell : System.Web.UI.WebControls.TableCell * int * System.Web.UI.WebControls.ListItemType -> unit
override this.InitializeCell : System.Web.UI.WebControls.TableCell * int * System.Web.UI.WebControls.ListItemType -> unit
Public Overridable Sub InitializeCell (cell As TableCell, columnIndex As Integer, itemType As ListItemType)

Parameters

cell
TableCell

A TableCell that represents the cell to reset.

columnIndex
Int32

The column number where the cell is located.

itemType
ListItemType

One of the ListItemType values.

Remarks

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.

Applies to