Skip to main content

TcxGridCard.GetVisibleRows(TList) Method

Returns the list of rows that are currently visible within the card.

Declaration

procedure GetVisibleRows(ARows: TList);

Parameters

Name Type
ARows TList

Remarks

Use the GetVisibleRows method to obtain a list of visible rows that belong to the card. This method first clears the list passed as the ARows parameter and then populates this list with TcxGridCardViewRow objects representing currently visible rows.

Note: a row is not included into the resulting list if:

  • it is a data row that resides within a collapsed card;

  • it is an empty data row (provided that the View’s OptionsView.EmptyRows option is disabled);

  • this row’s Visible property value if False.

See Also