IColumnCollection
IColumnCollection interface
Represents collection of columns in a table.
public interface IColumnCollection : IGenericCollection<IColumn>
Properties
Name |
Description |
Item { get; } |
Returns the column at the specified index. Read-only IColumn . |
Methods
Name |
Description |
AddClone(IColumn, bool) |
Creates a copy of the specified template row and inserts it at the bottom of a table. |
InsertClone(int, IColumn, bool) |
Creates a copy of the specified template column and insert it at the specified position in a table. |
RemoveAt(int, bool) |
Removes a column at the specified position from a table. |
See Also