Skip to main content
Version: 4.1

DataGridViewHeaderCell

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Contains functionality common to row header cells and column header cells.

public class DataGridViewHeaderCell : DataGridViewCell

Constructors

Instance member DataGridViewHeaderCell()

Initializes a new instance of DataGridViewHeaderCell.

Properties

Instance member Displayed

Boolean:

Instance member Frozen

Boolean: Returns a value indicating whether the cell is frozen.

Instance member ReadOnly

Boolean: Returns a value indicating whether the header cell is read-only.

Throws:

Instance member Resizable

Boolean: Returns a value indicating whether the cell is resizable.

Instance member Selected

Boolean: Returns or sets whether the cell is selected.

Throws:

Instance member ValueType

Type: Returns the type of the value stored in the cell.

Instance member Visible

Boolean: Returns a value indicating whether or not the cell is visible.

Methods

Instance member Clone()

Creates a copy of this cell.

Returns: DataGridViewCell. The cloned DataGridViewHeaderCell.

Instance member GetInheritedState(rowIndex)

Returns a value indicating the current state of the cell as inherited from the state of its row or column.

ParameterTypeDescription
rowIndexInt32The index of the row containing the cell or -1 if the cell is not a row header cell or is not contained within a DataGridView control.

Returns: DataGridViewElementStates. A combination of DataGridViewElementStates values representing the current state of the cell.

Throws:

  • ArgumentException The cell is a row header cell, the cell is not contained within a DataGridView control, and rowIndex is not -1.- or -The cell is a row header cell, the cell is contained within a DataGridView control, and rowIndex is outside the valid range of 0 to the number of rows in the control minus 1.- or -The cell is a row header cell and rowIndex is not the index of the row containing this cell.
  • ArgumentOutOfRangeException The cell is a column header cell or the control's TopLeftHeaderCell and rowIndex is not -1.

Protected member GetValue()

Returns the value of the cell.

Returns: Object. The value contained in the DataGridViewHeaderCell.

Protected member SetValue(value)

Sets the value of the cell.

ParameterTypeDescription
valueObjectThe cell value to set.

Returns: Boolean. true if the value has been set; otherwise, false.

Inherited By

NameDescription
DataGridViewColumnHeaderCellRepresents a column header in a DataGridView control.
DataGridViewRowHeaderCellRepresents a row header of a DataGridView control.

Implements

NameDescription
IUserDataProvides access to the UserData and Tag properties associated to the component implementing this interface.
ICommandSourceDefines an object that can invoke a Command.