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

VGridOptionsSelectionAndFocus.EnableAppearanceFocusedRow Property

Gets or sets whether the appearance settings used to paint the header of the focused row are enabled.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public bool EnableAppearanceFocusedRow { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if the appearance settings are enabled; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to EnableAppearanceFocusedRow
PropertyGridControl
.OptionsSelectionAndFocus.EnableAppearanceFocusedRow
VGridControl
.OptionsSelectionAndFocus.EnableAppearanceFocusedRow
VGridControlBase
.OptionsSelectionAndFocus.EnableAppearanceFocusedRow

Remarks

The VGridAppearanceCollection.FocusedRow and VGridAppearanceCollection.HideSelectionRow properties (accessible via the VGridControlBase.Appearance property) allow you to customize the appearance of the focused row’s header. The EnableAppearanceFocusedRow property specifies whether these appearance settings are in effect.

If the EnableAppearanceFocusedRow property is set to false, the focused row’s header is painted according to appearance settings specified with the VGridAppearanceCollection.RowHeaderPanel property.

See Also