Gets a list of all rows in the table.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public TableNode.RowCollection Rows { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Rows As TableNode.RowCollection |
An instance of the RowCollection class.
RemarksThe property refers to the collection of all rows that compose the table. Do not add or remove rows through this collection, but use the table's AddRow, InsertRow or DeleteRow methods.
See Also