Skip to main content
A newer version of this page is available. .

VGridOptionsBehavior.ResizeRowHeaders Property

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

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

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
PropertyGridControl
.OptionsBehavior.ResizeRowHeaders
VGridControl
.OptionsBehavior.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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ResizeRowHeaders property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also