[]
Removes a Column object from the collection.
public Column Remove(int index)
Type | Name | Description |
---|---|---|
int | index | The index of the column to remove from the collection. |
Type | Description |
---|---|
Column | A reference to the Column that was removed from the collection. |
Removes a Column object from the collection.
public Column Remove(Column column)
Type | Name | Description |
---|---|---|
Column | column | The column to remove. |
Type | Description |
---|---|
Column | A reference to the Column that was removed from the collection. |
Removes a Column object from the collection.
public Column Remove(string columnName)
Type | Name | Description |
---|---|---|
string | columnName | Name of the column to remove. |
Type | Description |
---|---|
Column | A reference to the Column that was removed from the collection. |