Back to Devexpress

TableView.RowDetailsVisibilityMode Property

wpf-devexpress-dot-xpf-dot-grid-dot-tableview-8fa2fbe0.md

latest2.9 KB
Original Source

TableView.RowDetailsVisibilityMode Property

Gets or sets a value that specifies whether to display row details. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public RowDetailsVisibilityMode RowDetailsVisibilityMode { get; set; }
vb
Public Property RowDetailsVisibilityMode As RowDetailsVisibilityMode

Property Value

TypeDefaultDescription
RowDetailsVisibilityModeVisibleWhenFocused

A RowDetailsVisibilityMode enumeration value.

|

Available values:

NameDescription
Collapsed

The row details are not displayed for any rows.

| | Visible |

The row details are displayed for all rows.

| | VisibleWhenFocused |

The row details are displayed only for selected rows.

|

Remarks

Use the TableView.RowDetailsTemplate property to display custom content at the bottom of a row. The RowDetailsVisibilityMode property specifies how to display row details.

Refer to the following help topic for more information: Row Details.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RowDetailsVisibilityMode 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.

wpf-synchronous-theme-preload-with-splashscreen/CS/ThemePreloadwithSplashscreen/ComplexWindow.xaml#L250

xml
RowDetailsTemplate="{StaticResource tasksDetailsTemplate}"
RowDetailsVisibilityMode="Visible"
ShowGroupPanel="False"

See Also

TableView Class

TableView Members

DevExpress.Xpf.Grid Namespace