| Member | Description |
|---|---|
Constructor |
Constructor |
Add |
Adds an item to the list of columns public virtual ColumnItem Add(); public virtual void Add( int numberOfColumnsToAdd ); public virtual int Add( ColumnItem newColumn ); |
Clear |
Removes all columns from the collection public virtual void Clear(); |
Contains |
Checks whether the collection contains a certain item public sealed bool Contains( object value ); |
CopyTo |
Not supported public sealed void CopyTo( Array array, int index ); |
GetEnumerator |
Enumerator public ColumnEnumerator GetEnumerator(); |
HideAllHostedControls |
Makes sure none of the hosted controls are visible public virtual void HideAllHostedControls(); |
IndexOf |
Finds the index of an item in the collection public sealed int IndexOf( object value ); |
Insert |
Inserts an item into the collection public sealed void Insert( int index, object value ); |
Remove |
Removes an item from the collection public sealed void Remove( object value ); |
RemoveAt |
Removes an item at a certain index public sealed void RemoveAt( int index ); |
Count |
Count |
IsFixedSize |
Is the collection fixed size? (no in this case) |
IsReadOnly |
Is the collection read-only? |
IsSynchronized |
Synchronized (always false) |
Item |
|
SyncRoot |
Not supported |
TotalColumnWidth |
Returns the width of all columns combined |