Skip to main content

WinExplorerViewStyleOptions.ShowDescription Property

Gets or sets whether the Description data column is shown. This property is in effect when the WinExplorer View is displayed in the Tiles or Content style.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean ShowDescription { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A DefaultBoolean enumeration value that specifies whether the description is shown.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowDescription
WinExplorerViewStyleOptionsCollection
.ExtraLarge .ShowDescription
WinExplorerViewStyleOptionsCollection
.Large .ShowDescription
WinExplorerViewStyleOptionsCollection
.Medium .ShowDescription
WinExplorerViewStyleOptionsCollection
.Small .ShowDescription
WinExplorerViewStyleOptionsCollection
.Tiles .ShowDescription

Remarks

When the WinExplorer View is displayed in the Tiles or Content style (to specify the View style, use the WinExplorerView.OptionsView.Style property), it can display the Description data column. The field in the underlying data source for the Description data column is specified by the WinExplorerView.ColumnSet.DescriptionColumn property. If the ShowDescription property is set to Default or True, the Description data column is displayed. Set the ShowDescription property to False, to hide this column.

See Also