Remove Data Column

Remove data column from the data table.

Remove the specified data column from the data table.

Input

  • Input : DataTable Variable The Data Table variable from which the column is to be removed.

  • Column Index : Integer ArgumentOptional The index of the column to be removed from the column collection of Data Table.

circle-info

If Column Index property is set then Column Name property is ignored.

  • Column Name : DynamicSearchString The name of the column to be removed from the column collection of the Data Table.

    • Text - The full name of the column to be sorted.

    • Regex - The regex is used to find matching column names to be sorted.

    • Wildcard - The character that is used for search matching column name. The asterisk (*)and the question mark (?) are used as wildcard characters. The asterisk represents zero or more characters in a string. The question mark represents any one character.

circle-info

When multiple matches are found while using Search Methods, only the first match is considered.

circle-info

The Text, Regex and Wildcard search methods are supported.EditDistance is not supported.

circle-info

If Column Name property is set then the Column Index property is ignored.

  • Data Column : Object ArgumentOptional

    A Data Column object to be removed from the column collection of the Data Table.

circle-info

If Data Column property is set then the Column Name and Column Index properties are ignored.

Last updated