VGridOptionsBehavior.ResizeRowHeaders Property
Gets or sets whether end-users can resize row headers.
Namespace: DevExpress.XtraVerticalGrid
Assembly: DevExpress.XtraVerticalGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
Declaration
[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool ResizeRowHeaders { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true | true to allow end-users to resize row headers; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ResizeRowHeaders |
---|---|
VGridControlBase |
|
Remarks
If the ResizeRowHeaders property is set to true, end-users can change:
- the height of each row by dragging the row header’s bottom edge. The height of individual rows can also be changed in code by setting the BaseRow.Height property regardless of the ResizeRowHeaders property’s value.
- the width of headers that correspond to individual row items in multi-editor rows. The width of row item headers can also be changed via code by setting the MultiEditorRowProperties.Width property regardless of the ResizeRowHeaders property’s value.
See Also