Class GridColumnCollection
Provides access to an ordered, strongly typed collection of ColumnDefinition objects.
public class GridColumnCollection : IList<ColumnDefinition>, ICollection<ColumnDefinition>, IEnumerable<ColumnDefinition>, IList, ICollection, IEnumerable
- Inheritance
-
GridColumnCollection
- Implements
Properties
- Count
Gets the total number of items within this instance of GridColumnCollection.
- IsReadOnly
Gets a value that indicates whether a GridColumnCollection is read-only.
- IsSynchronized
Gets a value that indicates whether access to this GridColumnCollection is synchronized (thread safe).
- this[int]
Gets a value that indicates the current item within a GridColumnCollection.
- SyncRoot
Gets an object that can be used to synchronize access to the GridColumnCollection.
Methods
- Add(ColumnDefinition)
Adds a ColumnDefinition element to a GridColumnCollection.
- Clear()
Clears the content of the GridColumnCollection.
- Contains(ColumnDefinition)
Determines whether a given ColumnDefinition exists within a GridColumnCollection.
- CopyTo(ColumnDefinition[], int)
Copies an array of ColumnDefinition objects to a given index position within a GridColumnCollection.
- IndexOf(ColumnDefinition)
Returns the index position of a given ColumnDefinition within a GridColumnCollection.
- Insert(int, ColumnDefinition)
Inserts a ColumnDefinition at the specified index position within a GridColumnCollection.
- Remove(ColumnDefinition)
Removes a ColumnDefinition from a GridColumnCollection.
- RemoveAt(int)
Removes a ColumnDefinition from a GridColumnCollection at the specified index position.
- RemoveRange(int, int)
Removes a range of ColumnDefinition objects from a GridColumnCollection.