Remove Data Column
Remove data column from the data table.
Last updated
Remove data column from the data table.
Last updated
Remove the specified data column from the data table.
Input : DataTable Variable
The Data Table variable from which the column is to be removed.
Column Index : Integer Argument
Optional
The index of the column to be removed from the column collection of Data Table.
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.
When multiple matches are found while using Search Methods, only the first match is considered.
The Text
, Regex
and Wildcard
search methods are supported.EditDistance
is not supported.
If Column Name
property is set then the Column Index
property is ignored.
Data Column : Object Argument
Optional
A Data Column object to be removed from the column collection of the Data Table.
If Data Column
property is set then the Column Name
and Column Index
properties are ignored.