windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-layoutview-116d4c0b.md
Obtains the View’s current state.
Namespace : DevExpress.XtraGrid.Views.Layout
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[Browsable(false)]
public LayoutViewState State { get; }
<Browsable(False)>
Public ReadOnly Property State As LayoutViewState
| Type | Description |
|---|---|
| DevExpress.XtraGrid.Views.Layout.LayoutViewState |
A DevExpress.XtraGrid.Views.Layout.LayoutViewState enumeration member indicating the View’s current state.
|
Use the State property to determine which action is currently being performed by an end-user.
Note
Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the State member must not be invoked for these Views. The State member can only be used with Views that display real data within the Grid Control. Use the following methods to access these Views with which an end user interacts at runtime.
See Also