BandedGridView.IsSizingState Property
Gets a value indicating whether a View element is currently being resized.
Namespace: DevExpress.XtraGrid.Views.BandedGrid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
Boolean | true if a View element is being resized; otherwise, false. |
Remarks
The following resizing operations may be available to end-users:
- resizing a band by dragging its right edge. This operation is available for bands whose OptionsBand.AllowSize option is enabled. The BandedGridView.State property returns BandedGridState.BandSizing when performing such operations;
- resizing a column header by dragging its right edge. This operation is available for columns whose OptionsColumn.AllowSize option is enabled. The BandedGridView.State property returns BandedGridState.ColumnSizing when performing such operations;
- resizing data rows by dragging a row’s bottom edge. This operation is available when the View’s GridOptionsCustomization.AllowRowSizing option is enabled. The BandedGridView.State property returns BandedGridState.RowSizing when performing such operations;
- resizing a detail View section by dragging its bottom edge. The BandedGridView.State property returns BandedGridState.RowDetailSizing when performing such operations.
If an operation from the above list is currently being performed, the IsSizingState property returns true.
See Also