ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.4.8 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / Rows Property

In This Topic
    Rows Property (C1FlexPivotGrid)
    In This Topic
    Gets the collection of C1.Win.C1FlexGrid.C1FlexGridBase.Row objects in the grid.
    Syntax
    'Declaration
     
    Public ReadOnly Property Rows As RowCollection
    public RowCollection Rows {get;}
    Remarks

    The C1.Win.C1FlexGrid.C1FlexGridBase.Rows property returns a reference to the list of rows that make up the grid. With this reference, you can add, remove, move, and count the rows. For more information on the tasks that can be performed with this collection, see the C1.Win.C1FlexGrid.RowCollection object.

    This property is read-only. The grid creates and manages the row collection for you.

    Upgrade Note: In the VSFlexGrid ActiveX control, the Rows and FixedRows properties corresponded to the number of rows and fixed rows on the grid. In C1FlexGrid, use Rows.Count and Rows.Fixed.

    See Also