This documentation is archived and is not being maintained.
DataGridViewElementStates Enumeration
Visual Studio 2010
Specifies the user interface (UI) state of a element within a DataGridView control.
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)
| Member name | Description | |
|---|---|---|
| None | Indicates that an element is in its default state. | |
| Displayed | Indicates the an element is currently displayed onscreen. | |
| Frozen | Indicates that an element cannot be scrolled through the UI. | |
| 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). |
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.
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.
Show: