Class XmlPropertySettingCollection
A collection that stores Xml
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class XmlPropertySettingCollection : CollectionBase, IList, ICollection, ICollection<XmlPropertySetting>, IEnumerable<XmlPropertySetting>, IEnumerable
Constructors
XmlPropertySettingCollection()
Initializes a new instance of Xml
Declaration
public XmlPropertySettingCollection()
XmlPropertySettingCollection(XmlPropertySetting[])
Initializes a new instance of Xml
Declaration
public XmlPropertySettingCollection(XmlPropertySetting[] value)
Parameters
Xml A array of Xml |
XmlPropertySettingCollection(XmlPropertySettingCollection)
Initializes a new instance of Xml
Declaration
public XmlPropertySettingCollection(XmlPropertySettingCollection value)
Parameters
Xml A Xml |
Properties
Item[Int32]
Represents the entry at the specified index of the Xml
Declaration
public XmlPropertySetting this[int index] { get; set; }
Parameters
System. The zero-based index of the entry to locate in the collection. |
Property Value
Xml The entry at the specified index of the collection. |
Exceptions
System.
|
Methods
Add(XmlPropertySetting)
Adds a Xml
Declaration
public int Add(XmlPropertySetting value)
Parameters
Xml The Xml |
Returns
System. The index at which the new element was inserted. |
AddRange(XmlPropertySetting[])
Copies the elements of an array to the end of the Xml
Declaration
public void AddRange(XmlPropertySetting[] value)
Parameters
Xml An array of type Xml |
AddRange(XmlPropertySettingCollection)
Adds the contents of another Xml
Declaration
public void AddRange(XmlPropertySettingCollection value)
Parameters
Xml A Xml |
Contains(XmlPropertySetting)
Gets a value indicating whether the
Xml
Declaration
public bool Contains(XmlPropertySetting value)
Parameters
Xml The Xml |
Returns
System. true if the Xml |
Implements
CopyTo(XmlPropertySetting[], Int32)
Copies the Xml
Declaration
public void CopyTo(XmlPropertySetting[] array, int index)
Parameters
Xml The one-dimensional System. |
System. The index in |
Implements
Exceptions
System.
-or- The number of elements in the Xml |
System.
|
System.
|
GetEnumerator()
Returns an enumerator that can iterate through
the Xml
Declaration
public XmlPropertySettingCollection.XmlPropertySettingEnumerator GetEnumerator()
Returns
IndexOf(XmlPropertySetting)
Returns the index of a Xml
Declaration
public int IndexOf(XmlPropertySetting value)
Parameters
Xml The Xml |
Returns
System. The index of the Xml |
Insert(Int32, XmlPropertySetting)
Inserts a Xml
Declaration
public void Insert(int index, XmlPropertySetting value)
Parameters
System. The zero-based index where |
Xml The Xml |
Remove(XmlPropertySetting)
Removes a specific Xml
Declaration
public void Remove(XmlPropertySetting value)
Parameters
Xml The Xml |
Exceptions
System.
|
Explicit Interface Implementations
ICollection<XmlPropertySetting>.Add(XmlPropertySetting)
Declaration
void ICollection<XmlPropertySetting>.Add(XmlPropertySetting value)
Parameters
Xml
|
Implements
ICollection<XmlPropertySetting>.IsReadOnly
Declaration
bool ICollection<XmlPropertySetting>.IsReadOnly { get; }
Returns
System.
|
Implements
ICollection<XmlPropertySetting>.Remove(XmlPropertySetting)
Declaration
bool ICollection<XmlPropertySetting>.Remove(XmlPropertySetting value)
Parameters
Xml
|
Returns
System.
|
Implements
IEnumerable<XmlPropertySetting>.GetEnumerator()
Declaration
IEnumerator<XmlPropertySetting> IEnumerable<XmlPropertySetting>.GetEnumerator()
Returns
System.
|