Class RadShortcutCollection
Inheritance
System.Object
RadShortcutCollection
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 RadShortcutCollection : IList<RadShortcut>, ICollection<RadShortcut>, IEnumerable<RadShortcut>, IEnumerable
Constructors
RadShortcutCollection(IShortcutProvider)
Declaration
public RadShortcutCollection(IShortcutProvider owner)
Parameters
IShortcutProvider
owner
|
Fields
ShortcutDelimiter
Declaration
public const char ShortcutDelimiter = ','
Field Value
System.Char
|
Properties
Count
Declaration
public int Count { get; }
Property Value
System.Int32
|
Implements
System.Collections.Generic.ICollection<T>.Count
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.IsReadOnly
Item[Int32]
Declaration
public RadShortcut this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
RadShortcut
|
Implements
System.Collections.Generic.IList<T>.Item[System.Int32]
Owner
Gets the IShortcutProvider instance that owns this collection.
Declaration
public IShortcutProvider Owner { get; }
Property Value
IShortcutProvider
|
Methods
Add(RadShortcut)
Declaration
public void Add(RadShortcut item)
Parameters
RadShortcut
item
|
Implements
System.Collections.Generic.ICollection<T>.Add(T)
Clear()
Declaration
public void Clear()
Implements
System.Collections.Generic.ICollection<T>.Clear()
Contains(RadShortcut)
Declaration
public bool Contains(RadShortcut item)
Parameters
RadShortcut
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Contains(T)
CopyTo(RadShortcut[], Int32)
Declaration
public void CopyTo(RadShortcut[] array, int arrayIndex)
Parameters
RadShortcut[]
array
|
System.Int32
arrayIndex
|
Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
GetDisplayText()
Gets a human readable string representation of the collection.
Declaration
public string GetDisplayText()
Returns
System.String
|
GetEnumerator()
Declaration
public IEnumerator<RadShortcut> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<RadShortcut>
|
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
IndexOf(RadShortcut)
Declaration
public int IndexOf(RadShortcut item)
Parameters
RadShortcut
item
|
Returns
System.Int32
|
Implements
System.Collections.Generic.IList<T>.IndexOf(T)
Insert(Int32, RadShortcut)
Declaration
public void Insert(int index, RadShortcut item)
Parameters
System.Int32
index
|
RadShortcut
item
|
Implements
System.Collections.Generic.IList<T>.Insert(System.Int32, T)
Remove(RadShortcut)
Declaration
public bool Remove(RadShortcut item)
Parameters
RadShortcut
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Remove(T)
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
System.Collections.IEnumerable.GetEnumerator()