Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WidgetView.Rows Property

Provides access to the row collection for this WidgetView.

Namespace: DevExpress.XtraBars.Docking2010.Views.Widget

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[ListBindable(false)]
[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, true, true, 1)]
public RowDefinitionCollection Rows { get; }

#Property Value

Type Description
DevExpress.XtraBars.Docking2010.Views.Widget.RowDefinitionCollection

A ColumnDefinitionCollection object that stores rows for this WidgetView.

#Remarks

The Rows property provides access to the collection of RowDefinition objects, which serve as rows within this WidgetView in Table Layout mode. In this mode, Widget Documents are organized into a table formed by columns and rows. You can modify these column and row collections via the WidgetView.Columns and Rows properties respectively. To switch the WidgetView to a Table Layout mode, set the WidgetView.LayoutMode to TableLayout. See the Widget View topic to learn more.

See Also