Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridOptionsBehavior.ResizeRowHeaders Property

Gets or sets whether end-users can resize row headers.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.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
.OptionsBehavior .ResizeRowHeaders

#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