Add DataTable Column

You can select this activity to add a column in the DataTable.

This table lists the properties for the activity.

Property Type Property Name Description
Input Column

InArgument<DataColumn>

The data column object that must be added to the group of column objects of the data table. If this property is specified, then all other properties under the Options section are skipped.
ColumnName

InArgument<String>

The name of the new column.
DataTable

InArgument<DataTable>

The data table object to which the column must be added.
Options AllowNull

InArgument<Boolean>

Specifies if the null values must be specified in this column for rows of the table.

AutoIncrement

InArgument<Boolean>

Specifies if the values of the column must increase automatically when a new row is added.
DefaultValue Specifies the default value of this column when a new row is added. The data type of this value must be the same as the data type declared in the TypeArgument property.
MaxLength

InArgument<Int32>

Specifies the maximum length of each row for the new column.
Unique

InArgument<Boolean>

Specifies if the values in each row of the new column are unique.
Input TypeArgument Specifies the data type of values that must be in the column.