DataGridViewElementStates Enumeration
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.FormsAssembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration <FlagsAttribute> _ <ComVisibleAttribute(True)> _ Public Enumeration DataGridViewElementStates 'Usage Dim instance As DataGridViewElementStates
/** @attribute FlagsAttribute() */ /** @attribute ComVisibleAttribute(true) */ public enum DataGridViewElementStates
FlagsAttribute ComVisibleAttribute(true) public enum DataGridViewElementStates
| Member name | Description | |
|---|---|---|
| Displayed | Indicates the an element is currently displayed onscreen. | |
| Frozen | Indicates that an element cannot be scrolled through the UI. | |
| None | Indicates that an element is in its default state. | |
| ReadOnly | Indicates that an element will not accept user input to change its value. | |
| Resizable | Indicates that an element can be resized through the UI. This value is ignored except when combined with the ResizableSet value. | |
| ResizableSet | Indicates that an element does not inherit the resizable state of its parent. | |
| Selected | Indicates that an element is in a selected (highlighted) UI state. | |
| Visible | Indicates that an element is visible (displayable). |
Although these different states, like Frozen, are enforced by the UI, they can be programmatically overruled.
The following code example illustrates the use of this type. For more information, see How to: Perform a Custom Action Based on Changes in a Cell of a Windows Forms DataGridView Control.
Private Sub dataGridView1_CellStateChanged(ByVal sender As Object, _ ByVal e As DataGridViewCellStateChangedEventArgs) _ Handles dataGridView1.CellStateChanged Dim state As DataGridViewElementStates = e.StateChanged Dim msg As String = String.Format( _ "Row {0}, Column {1}, {2}", _ e.Cell.RowIndex, e.Cell.ColumnIndex, e.StateChanged) MessageBox.Show(msg, "Cell State Changed") End Sub
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, 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.