Skip to main content
Row

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

TableColumnCollection.Add(Int32) Method

Inserts a new column into the table at the specified position and returns the newly created object.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

TableColumn Add(
    int position
)

#Parameters

Name Type Description
position Int32

An integer specifying the zero-based index of the position where a new column shall be inserted.

#Returns

Type Description
TableColumn

A TableColumn object that specifies the newly created column in the table.

#Remarks

The Add method adds an empty column to the table. The default column name (a sting like ColumnN, where N is a number of the column with the default name in the table) is automatically assigned to the TableColumn.Name property. You can change the column name if required. Use other properties of the created TableColumn object to specify the data to be contained and displayed in the table column.

See Also