A collection that stores XmlPropertySettingGroup objects.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class XmlPropertySettingGroupCollection : CollectionBase, IList, ICollection, IEnumerable
Inheritance: objectCollectionBaseXmlPropertySettingGroupCollection
Implements:
Inherited Members
Constructors
Initializes a new instance of XmlPropertySettingGroupCollection.
public XmlPropertySettingGroupCollection()
Initializes a new instance of XmlPropertySettingGroupCollection containing any array of XmlPropertySettingGroup objects.
public XmlPropertySettingGroupCollection(XmlPropertySettingGroup[] value)
A array of XmlPropertySettingGroup objects with which to intialize the collection
Initializes a new instance of XmlPropertySettingGroupCollection based on another XmlPropertySettingGroupCollection.
public XmlPropertySettingGroupCollection(XmlPropertySettingGroupCollection value)
A XmlPropertySettingGroupCollection from which the contents are copied
Properties
Represents the entry at the specified index of the XmlPropertySettingGroup.
public XmlPropertySettingGroup this[int index] { get; set; }
The zero-based index of the entry to locate in the collection.
Property Value:The entry at the specified index of the collection.
Exceptions:index is outside the valid range of indexes for the collection.
Methods
Adds a XmlPropertySettingGroup with the specified value to the XmlPropertySettingGroupCollection .
public int Add(XmlPropertySettingGroup value)
The XmlPropertySettingGroup to add.
Returns:The index at which the new element was inserted.
Copies the elements of an array to the end of the XmlPropertySettingGroupCollection.
public void AddRange(XmlPropertySettingGroup[] value)
An array of type XmlPropertySettingGroup containing the objects to add to the collection.
Adds the contents of another XmlPropertySettingGroupCollection to the end of the collection.
public void AddRange(XmlPropertySettingGroupCollection value)
A XmlPropertySettingGroupCollection containing the objects to add to the collection.
Gets a value indicating whether the XmlPropertySettingGroupCollection contains the specified XmlPropertySettingGroup.
public bool Contains(XmlPropertySettingGroup value)
The XmlPropertySettingGroup to locate.
Returns:true if the XmlPropertySettingGroup is contained in the collection; otherwise, false.
Copies the XmlPropertySettingGroupCollection values to a one-dimensional Array instance at the specified index.
public void CopyTo(XmlPropertySettingGroup[] array, int index)
The one-dimensional Array that is the destination of the values copied from XmlPropertySettingGroupCollection .
indexintThe index in array where copying begins.
array is multidimensional.
-or-
The number of elements in the XmlPropertySettingGroupCollection is greater than the available space between index and the end of array.
array is null.
index is less than array's lowbound.
Returns an enumerator that can iterate through the XmlPropertySettingGroupCollection .
public XmlPropertySettingGroupCollection.XmlPropertySettingGroupEnumerator GetEnumerator()
XmlPropertySettingGroupCollection.XmlPropertySettingGroupEnumerator
None.
Returns the index of a XmlPropertySettingGroup in the XmlPropertySettingGroupCollection .
public int IndexOf(XmlPropertySettingGroup value)
The XmlPropertySettingGroup to locate.
Returns:The index of the XmlPropertySettingGroup of value in the
XmlPropertySettingGroupCollection, if found; otherwise, -1.
Inserts a XmlPropertySettingGroup into the XmlPropertySettingGroupCollection at the specified index.
public void Insert(int index, XmlPropertySettingGroup value)
The zero-based index where value should be inserted.
The XmlPropertySettingGroup to insert.
Removes a specific XmlPropertySettingGroup from the XmlPropertySettingGroupCollection .
public void Remove(XmlPropertySettingGroup value)
The XmlPropertySettingGroup to remove from the XmlPropertySettingGroupCollection .
Exceptions:value is not found in the Collection.