[]
Appends a new Column object to this collection.
public Column Add()
| Type | Description |
|---|---|
| Column | A reference to the Column that was added to the collection. |
Appends a given number of Column objects to the collection.
public void Add(int count)
| Type | Name | Description |
|---|---|---|
| int | count | Number of columns to add to the collection. |
This method adds the new columns to the end of the collection. To insert columns at specific positions, use the Insert(int) or InsertRange(int, int) methods.