DataGridViewElementStates
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the user interface (UI) state of a element within a DataGridView control.
- C#
- VB.NET
public enum DataGridViewElementStates : Enum
Public Enum DataGridViewElementStates As [Enum]
Fields
| Name | Description |
|---|---|
| Displayed | The element is currently displayed. |
| Frozen | The element belongs to a frozen (fixed) band. |
| None | Default state. |
| ReadOnly | The element will not accept user input to change its value. |
| Resizable | The element can be resized. This value is ignored except when combined with the ResizableSet value. |
| ResizableSet | The element does not inherit the resizable state of its parent. |
| Selected | The element is selected. |
| Visible | The element is visible (can be displayed or it's already displayed). |
Used By
| Name | Description |
|---|---|
| DataGridViewColumnCollection.GetColumnCount | Returns the number of columns that match the includeFilter . |
| DataGridViewColumnCollection.GetColumnsWidth | Returns the width, in pixels, required to display all of the columns that meet the includeFilter . |
| DataGridViewColumnCollection.GetFirstColumn | Returns the first DataGridViewColumn in display order that matches the includeFilter and excludeFilter . |
| DataGridViewColumnCollection.GetLastColumn | Returns the last DataGridViewColumn in display order that matches the includeFilter and excludeFilter . |
| DataGridViewColumnCollection.GetNextColumn | Returns the first DataGridViewColumn after the given column in display order that matches the includeFilter and excludeFilter . |
| DataGridViewColumnCollection.GetPreviousColumn | Returns the last DataGridViewColumn prior to the given column in display order that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetRowCount | Returns the number of rows that match the includeFilter . |
| DataGridViewRowCollection.GetRowsHeight | Returns the cumulative height of the DataGridViewRow objects that match the includeFilter . |
| DataGridViewRowCollection.GetFirstRowIndex | Returns the index of the first DataGridViewRow that matches the specified includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetFirstRow | Returns the first DataGridViewRow that matches the specified includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetLastRowIndex | Returns the index of the last DataGridViewRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetLastRow | Returns the last DataGridViewRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetNextRowIndex | Returns the index of the next DataGridViewRow after startRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetNextRow | Returns the next DataGridViewRow after startRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetPreviousRowIndex | Returns the index of the previous DataGridViewRow before startRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetPreviousRow | Returns the previous DataGridViewRow before startRow that matches the includeFilter and excludeFilter . |
| DataGridViewRowCollection.GetRowState | Returns the state of the DataGridViewRow at the specified index. |
| DataGridView.GetRowState | Returns the state of the DataGridViewRow at the specified index. |
| DataGridViewCell.InheritedState | Returns the current state of the cell as inherited from the state of its row and column. |
| DataGridViewCell.GetInheritedState | Returns a value indicating the current state of the cell as inherited from the state of its row and column. |
| DataGridViewElement.State | Returns the user interface (UI) state of the element. |
| DataGridViewHeaderCell.GetInheritedState | Returns a value indicating the current state of the cell as inherited from the state of its row or column. |
| DataGridViewCellStateChangedEventArgs.StateChanged | Returns the state that has changed on the cell. |
| DataGridViewColumnStateChangedEventArgs.StateChanged | Returns the new column state. |
| DataGridViewRowStateChangedEventArgs.StateChanged | Returns the state that has changed on the row. |