Skip to main content

RowData.RowState Property

Gets an object that stores a row’s state.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public DependencyObject RowState { get; }

Property Value

Type Description
DependencyObject

A DependencyObject representing the row state.

Remarks

Use the RowState property to associate a row with a DependencyObject that stores any kind of information about that row.

For an example of the RowState property usage, see the Persistent Row State demo available from the Demo Center.

The Persistent Row State demo features a GridControl that displays resizable data rows. The height of each row is stored in the RowState property. This way, regardless of sorting or filtering, the rows maintain the height specified by an end-user.

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