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 Data type Description
Input Column InArgument<DataColumn> 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> String The name of the new column.
DataTable InArgument<DataTable> DataTable The data table object to which the column must be added.
Options AllowNull InArgument<Boolean> Boolean Specifies if the null values must be specified in this column for rows of the table.
AutoIncrement InArgument<Boolean> Boolean Specifies if the values of the column must increase automatically when a new row is added.
DefaultValue String 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> Int32 Specifies the maximum length of each row for the new column.
Unique InArgument<Boolean> Boolean Specifies if the values in each row of the new column are unique.
Input TypeArgument Boolean/String/Int32/Object Specifies the data type of values that must be in the column.