Class PropertySettingCollection
Represents a property settings collection. Property settings are very similar to CSS style properties.
Inheritance
System.Object
PropertySettingCollection
Inherited Members
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 PropertySettingCollection : ICollection<IPropertySetting>, IEnumerable<IPropertySetting>, IEnumerable
Constructors
PropertySettingCollection()
Declaration
public PropertySettingCollection()
Properties
Count
Declaration
public int Count { get; }
Property Value
System.Int32
|
Implements
System.Collections.Generic.ICollection<T>.Count
OriginalPropertySettings
Declaration
public IList<IPropertySetting> OriginalPropertySettings { get; }
Property Value
System.Collections.Generic.IList<IPropertySetting>
|
Methods
Add(IPropertySetting)
Declaration
public void Add(IPropertySetting item)
Parameters
IPropertySetting
item
|
Implements
System.Collections.Generic.ICollection<T>.Add(T)
AddRange(IEnumerable<IPropertySetting>)
Declaration
public void AddRange(IEnumerable<IPropertySetting> items)
Parameters
System.Collections.Generic.IEnumerable<IPropertySetting>
items
|
Clear()
Declaration
public void Clear()
Implements
System.Collections.Generic.ICollection<T>.Clear()
Contains(IPropertySetting)
Declaration
public bool Contains(IPropertySetting item)
Parameters
IPropertySetting
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Contains(T)
ContainsInheritedSetting(RadProperty)
Declaration
public bool ContainsInheritedSetting(RadProperty property)
Parameters
RadProperty
property
|
Returns
System.Boolean
|
ContainsSetting(RadProperty)
Declaration
public bool ContainsSetting(RadProperty property)
Parameters
RadProperty
property
|
Returns
System.Boolean
|
CopyTo(IPropertySetting[], Int32)
Declaration
public void CopyTo(IPropertySetting[] array, int arrayIndex)
Parameters
IPropertySetting[]
array
|
System.Int32
arrayIndex
|
Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
EnumLocalSettings()
Declaration
public IEnumerable<IPropertySetting> EnumLocalSettings()
Returns
System.Collections.Generic.IEnumerable<IPropertySetting>
|
FindInheritedSetting(RadProperty)
Declaration
public IPropertySetting FindInheritedSetting(RadProperty property)
Parameters
RadProperty
property
|
Returns
IPropertySetting
|
FindSetting(RadProperty)
Declaration
public IPropertySetting FindSetting(RadProperty property)
Parameters
RadProperty
property
|
Returns
IPropertySetting
|
Remove(IPropertySetting)
Declaration
public bool Remove(IPropertySetting item)
Parameters
IPropertySetting
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Remove(T)
RemoveSetting(RadProperty)
Declaration
public bool RemoveSetting(RadProperty property)
Parameters
RadProperty
property
|
Returns
System.Boolean
|
Explicit Interface Implementations
ICollection<IPropertySetting>.IsReadOnly
Declaration
bool ICollection<IPropertySetting>.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.IsReadOnly
IEnumerable<IPropertySetting>.GetEnumerator()
Declaration
IEnumerator<IPropertySetting> IEnumerable<IPropertySetting>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<IPropertySetting>
|
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
System.Collections.IEnumerable.GetEnumerator()