[]
Represents a Keys/String pair collection.
[ListBindable(false)]
public class ShortcutDictionary : IDictionary<Keys, string>, ICollection<KeyValuePair<Keys, string>>, IEnumerable<KeyValuePair<Keys, string>>, ICloneable, ICollection, IEnumerable
<ListBindable(False)>
Public Class ShortcutDictionary
Implements IDictionary(Of Keys, String), ICollection(Of KeyValuePair(Of Keys, String)), IEnumerable(Of KeyValuePair(Of Keys, String)), ICloneable, ICollection, IEnumerable
Name | Description |
---|---|
Count | Gets the number of elements contained in the ShortcutDictionary. |
this[Keys] | Gets or sets the element with the specified key. |
Keys | Gets a collection that contains the keys of the all elements. |
Values | Gets a collection that contains the values in the inner collection. |
Name | Description |
---|---|
Add(Keys, string) | Adds a Keys/String element to the collection. |
Clear() | Removes all shortcuts from the ShortcutDictionary. |
Clone() | Creates a new object that is a copy of the current instance. |
ContainsKey(Keys) | Determines whether the collection contains an element with the specified key. |
GetEnumerator() | Returns an enumerator that iterates through the collection. |
Remove(Keys) | Removes the element with the specified key. |
TryGetValue(Keys, out string) | Gets the value associated with the specified key. |