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

TdxSpreadSheetTableRow Class

A row within a row collection.

#Declaration

Delphi
TdxSpreadSheetTableRow = class(
    TdxSpreadSheetTableItem
)

#Remarks

This class implements a logical row object (table item) designed to store individual row settings and host the cell objects within a Table View worksheet.

As a logical container, a row object is always created in response to creation of a cell object, provided that its row object has not already existed.

In order to customize a specific row within a Table View worksheet, you need to create a corresponding TdxSpreadSheetTableRow object by calling the row collection’s CreateItem function. Refer to the Table Item Appearance Customization Level topic for additional information.

As a logical container, a row object provides the CreateCell function allowing you to create individual cell objects at the specified positions within it.

A TdxSpreadSheetTableRow object is referenced by the row collection’s Items property and the cell object’s Row property.

See Also