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 |
---|---|
Table |
A 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.