Add()
|
Creates a new hidden column and appends it to the collection.
|
Add(GridColumn)
|
Adds the specified column to the end of the collection.
|
AddField(String)
|
Creates a new column which is bound to the specified field and appends it to the collection.
|
AddRange(GridColumn[])
|
Adds an array of columns to the end of the collection.
|
AddRange(BandedGridColumn[])
|
Adds an array of column objects to the collection.
|
AddUnbound(String, Type)
|
Creates an unbound column with the specified field name and unbound data type, and adds it to the collection.
|
AddVisible(String, String)
|
Adds a new column with the specified caption, binds it to the specified field, and makes this column visible.
|
AddVisible(String)
|
Adds a new column, binds it to the specified field, and makes this column visible.
|
Clear()
|
Removes all objects from the CollectionBase instance. This method cannot be overridden.
|
ColumnByFieldName(String)
|
Returns a column by the name of the field to which it is bound.
|
ColumnByName(String)
|
Returns a column by its name.
|
Contains(GridColumn)
|
Indicates whether the collection contains the specified column.
|
Equals(Object, Object)
static
|
Determines whether the specified object instances are considered equal.
|
Equals(Object)
|
Determines whether the specified object is equal to the current object.
|
ForEach(Action<GridColumn>)
|
Executes the specified action on each element in the collection.
|
GetEnumerator()
|
Returns an enumerator that iterates through the CollectionBase instance.
|
GetHashCode()
|
Serves as the default hash function.
|
GetType()
|
Gets the Type of the current instance.
|
IndexOf(GridColumn)
|
Returns the specified column’s position within the collection.
|
Insert(Int32, GridColumn)
|
Inserts the specified column at the specified position.
|
Insert(Int32)
|
Creates a new column and adds it to the specified position within the collection.
|
MemberwiseClone()
protected
|
Creates a shallow copy of the current Object.
|
OnClearComplete()
protected
|
Performs additional custom processes after clearing the contents of the CollectionBase instance.
|
OnInsert(Int32, Object)
protected
|
Performs additional custom processes before inserting a new element into the CollectionBase instance.
|
OnRemove(Int32, Object)
protected
|
Performs additional custom processes when removing an element from the CollectionBase instance.
|
OnSet(Int32, Object, Object)
protected
|
Performs additional custom processes before setting a value in the CollectionBase instance.
|
OnSetComplete(Int32, Object, Object)
protected
|
Performs additional custom processes after setting a value in the CollectionBase instance.
|
OnValidate(Object)
protected
|
Performs additional custom processes when validating a value.
|
ReferenceEquals(Object, Object)
static
|
Determines whether the specified Object instances are the same instance.
|
Remove(GridColumn)
|
Removes the specified column from the collection.
|
RemoveAt(Int32)
|
Removes the element at the specified index of the CollectionBase instance. This method is not overridable.
|
ICollection.CopyTo(Array, Int32)
|
Copies the entire CollectionBase to a compatible one-dimensional Array, starting at the specified index of the target array.
|
IList.Add(Object)
|
Adds an object to the end of the CollectionBase.
|
IList.Contains(Object)
|
Determines whether the CollectionBase contains a specific element.
|
IList.IndexOf(Object)
|
Searches for the specified Object and returns the zero-based index of the first occurrence within the entire CollectionBase.
|
IList.Insert(Int32, Object)
|
Inserts an element into the CollectionBase at the specified index.
|
IList.Remove(Object)
|
Removes the first occurrence of a specific object from the CollectionBase.
|
ToString()
|
Returns a string that represents the current object.
|