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

TdxSpreadSheetTableColumn Class

A column within a column collection.

#Declaration

Delphi
TdxSpreadSheetTableColumn = class(
    TdxSpreadSheetTableItem
)

#Remarks

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

As a logical container, a column object is always created in response to the creation of a cell object, provided that its column object does not already exist.

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

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

A TdxSpreadSheetTableColumn object is referenced by the column collection’s Items property and the cell object’s Column property.

See Also