InsertColumnParameters Interface
insertColumn(params) parameters.
This API is provided as an alpha preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
interface InsertColumnParameters<TColumn extends ImplicitAllowedTypes>
Type Parameters
Parameter | Constraint | Description |
---|---|---|
TColumn | ImplicitAllowedTypes |
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
column | Alpha |
readonly |
InsertableTreeNodeFromImplicitAllowedTypes<TColumn> | The column to insert. |
index | Alpha |
optional , readonly |
number | undefined | The index at which to insert the new column. |
Property Details
column
The column to insert.
This API is provided as an alpha preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
readonly column: InsertableTreeNodeFromImplicitAllowedTypes<TColumn>;
Type: InsertableTreeNodeFromImplicitAllowedTypes<TColumn>
index
The index at which to insert the new column.
This API is provided as an alpha preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
readonly index?: number | undefined;
Type: number | undefined
Remarks
If not provided, the column will be appended to the end of the table.