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

PropertyGridControl.ActiveViewType Property

Gets or sets whether the control is displayed in the Classic (a single view) or Office (a tabbed view) style.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

[DXCategory("Layout")]
[DefaultValue(PropertyGridView.Classic)]
[XtraSerializableProperty]
public PropertyGridView ActiveViewType { get; set; }

Property Value

Type Default Description
DevExpress.XtraVerticalGrid.PropertyGridView **Classic**

A DevExpress.XtraVerticalGrid.PropertyGridView enumeration value that specifies whether the control is displayed in the Classic or Office style.

Remarks

Using the ActiveViewType property you can enable one of the following views:

  • Classic - a single view with classic design

    PropertyGrid_ClassicView

  • Office - a tabbed view with flat design

    PropertyGrid_OfficeView1

To add and customize tabs in the Office view, use the PropertyGridControl.Tabs collection.

See Also