Back to Devexpress

RowData.RowState Property

wpf-devexpress-dot-xpf-dot-grid-dot-rowdata-12a3baef.md

latest2.9 KB
Original Source

RowData.RowState Property

Gets an object that stores a row’s state.

Namespace : DevExpress.Xpf.Grid

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

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public DependencyObject RowState { get; }
vb
Public ReadOnly Property RowState As DependencyObject

Property Value

TypeDescription
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.

wpf-grid-resize-rows-using-splitter/CS/PersistentRowState/Classes.cs#L53

csharp
{
    get { return GetRowHeight(RowData.RowState); }
    set { SetRowHeight(RowData.RowState, value); }

wpf-grid-resize-rows-using-splitter/VB/PersistentRowState/Classes.vb#L42

vb
Get
    Return GetRowHeight(RowData.RowState)
End Get

See Also

RowData Class

RowData Members

DevExpress.Xpf.Grid Namespace