skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class XmlPropertySettingCollection

A collection that stores XmlPropertySetting objects.

Inheritance
System.Object
System.Collections.CollectionBase
XmlPropertySettingCollection
Inherited Members
System.Collections.CollectionBase.Clear()
System.Collections.CollectionBase.RemoveAt(System.Int32)
System.Collections.CollectionBase.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.CollectionBase.System.Collections.IList.get_Item(System.Int32)
System.Collections.CollectionBase.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.CollectionBase.System.Collections.IList.Contains(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Add(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Remove(System.Object)
System.Collections.CollectionBase.System.Collections.IList.IndexOf(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.CollectionBase.OnSet(System.Int32, System.Object, System.Object)
System.Collections.CollectionBase.OnInsert(System.Int32, System.Object)
System.Collections.CollectionBase.OnClear()
System.Collections.CollectionBase.OnRemove(System.Int32, System.Object)
System.Collections.CollectionBase.OnValidate(System.Object)
System.Collections.CollectionBase.OnSetComplete(System.Int32, System.Object, System.Object)
System.Collections.CollectionBase.OnInsertComplete(System.Int32, System.Object)
System.Collections.CollectionBase.OnClearComplete()
System.Collections.CollectionBase.OnRemoveComplete(System.Int32, System.Object)
System.Collections.CollectionBase.InnerList
System.Collections.CollectionBase.List
System.Collections.CollectionBase.Capacity
System.Collections.CollectionBase.Count
System.Collections.CollectionBase.System.Collections.IList.IsReadOnly
System.Collections.CollectionBase.System.Collections.IList.IsFixedSize
System.Collections.CollectionBase.System.Collections.ICollection.IsSynchronized
System.Collections.CollectionBase.System.Collections.ICollection.SyncRoot
System.Collections.CollectionBase.System.Collections.IList.Item[System.Int32]
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 XmlPropertySettingCollection.

Declaration
public XmlPropertySettingCollection()

XmlPropertySettingCollection(XmlPropertySetting[])

Initializes a new instance of XmlPropertySettingCollection containing any array of XmlPropertySetting objects.

Declaration
public XmlPropertySettingCollection(XmlPropertySetting[] value)
Parameters
XmlPropertySetting[] value

A array of XmlPropertySetting objects with which to intialize the collection

XmlPropertySettingCollection(XmlPropertySettingCollection)

Initializes a new instance of XmlPropertySettingCollection based on another XmlPropertySettingCollection.

Declaration
public XmlPropertySettingCollection(XmlPropertySettingCollection value)
Parameters
XmlPropertySettingCollection value

A XmlPropertySettingCollection from which the contents are copied

Properties

Item[Int32]

Represents the entry at the specified index of the XmlPropertySetting.

Declaration
public XmlPropertySetting this[int index] { get; set; }
Parameters
System.Int32 index

The zero-based index of the entry to locate in the collection.

Property Value
XmlPropertySetting

The entry at the specified index of the collection.

Exceptions
System.ArgumentOutOfRangeException

index is outside the valid range of indexes for the collection.

Methods

Add(XmlPropertySetting)

Adds a XmlPropertySetting with the specified value to the XmlPropertySettingCollection .

Declaration
public int Add(XmlPropertySetting value)
Parameters
XmlPropertySetting value

The XmlPropertySetting to add.

Returns
System.Int32

The index at which the new element was inserted.

AddRange(XmlPropertySetting[])

Copies the elements of an array to the end of the XmlPropertySettingCollection.

Declaration
public void AddRange(XmlPropertySetting[] value)
Parameters
XmlPropertySetting[] value

An array of type XmlPropertySetting containing the objects to add to the collection.

AddRange(XmlPropertySettingCollection)

Adds the contents of another XmlPropertySettingCollection to the end of the collection.

Declaration
public void AddRange(XmlPropertySettingCollection value)
Parameters
XmlPropertySettingCollection value

A XmlPropertySettingCollection containing the objects to add to the collection.

Contains(XmlPropertySetting)

Gets a value indicating whether the XmlPropertySettingCollection contains the specified XmlPropertySetting.

Declaration
public bool Contains(XmlPropertySetting value)
Parameters
XmlPropertySetting value

The XmlPropertySetting to locate.

Returns
System.Boolean

true if the XmlPropertySetting is contained in the collection; otherwise, false.

Implements
System.Collections.Generic.ICollection<T>.Contains(T)

CopyTo(XmlPropertySetting[], Int32)

Copies the XmlPropertySettingCollection values to a one-dimensional System.Array instance at the specified index.

Declaration
public void CopyTo(XmlPropertySetting[] array, int index)
Parameters
XmlPropertySetting[] array

The one-dimensional System.Array that is the destination of the values copied from XmlPropertySettingCollection .

System.Int32 index

The index in array where copying begins.

Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
Exceptions
System.ArgumentException

array is multidimensional.

-or-

The number of elements in the XmlPropertySettingCollection is greater than the available space between index and the end of array.

System.ArgumentNullException

array is null.

System.ArgumentOutOfRangeException

index is less than array's lowbound.

GetEnumerator()

Returns an enumerator that can iterate through the XmlPropertySettingCollection .

Declaration
public XmlPropertySettingCollection.XmlPropertySettingEnumerator GetEnumerator()
Returns
XmlPropertySettingCollection.XmlPropertySettingEnumerator

None.

IndexOf(XmlPropertySetting)

Returns the index of a XmlPropertySetting in the XmlPropertySettingCollection .

Declaration
public int IndexOf(XmlPropertySetting value)
Parameters
XmlPropertySetting value

The XmlPropertySetting to locate.

Returns
System.Int32

The index of the XmlPropertySetting of value in the XmlPropertySettingCollection, if found; otherwise, -1.

Insert(Int32, XmlPropertySetting)

Inserts a XmlPropertySetting into the XmlPropertySettingCollection at the specified index.

Declaration
public void Insert(int index, XmlPropertySetting value)
Parameters
System.Int32 index

The zero-based index where value should be inserted.

XmlPropertySetting value

The XmlPropertySetting to insert.

Remove(XmlPropertySetting)

Removes a specific XmlPropertySetting from the XmlPropertySettingCollection .

Declaration
public void Remove(XmlPropertySetting value)
Parameters
XmlPropertySetting value

The XmlPropertySetting to remove from the XmlPropertySettingCollection .

Exceptions
System.ArgumentException

value is not found in the Collection.

Explicit Interface Implementations

ICollection<XmlPropertySetting>.Add(XmlPropertySetting)

Declaration
void ICollection<XmlPropertySetting>.Add(XmlPropertySetting value)
Parameters
XmlPropertySetting value

Implements
System.Collections.Generic.ICollection<T>.Add(T)

ICollection<XmlPropertySetting>.IsReadOnly

Declaration
bool ICollection<XmlPropertySetting>.IsReadOnly { get; }
Returns
System.Boolean

Implements
System.Collections.Generic.ICollection<T>.IsReadOnly

ICollection<XmlPropertySetting>.Remove(XmlPropertySetting)

Declaration
bool ICollection<XmlPropertySetting>.Remove(XmlPropertySetting value)
Parameters
XmlPropertySetting value

Returns
System.Boolean

Implements
System.Collections.Generic.ICollection<T>.Remove(T)

IEnumerable<XmlPropertySetting>.GetEnumerator()

Declaration
IEnumerator<XmlPropertySetting> IEnumerable<XmlPropertySetting>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<XmlPropertySetting>

Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Extension Methods

CommonExtensions.AddRange<T>(ICollection<T>, IEnumerable<T>)
CommonExtensions.ContainsAny<T>(IEnumerable<T>, IEnumerable<T>)
CommonExtensions.ForEach<T>(IEnumerable<T>, Action<T>)
CommonExtensions.Clone<T>(IEnumerable<T>)
ExtensionMethodsEditor.CastCovariant<TFrom, TTo>(IEnumerable<TFrom>)
SvgExtentions.Traverse<T>(IEnumerable<T>, Func<T, IEnumerable<T>>)
SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(IEnumerable<T>, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.