Class Chord
Represent a chord.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.Keyboard
Assembly: Telerik.WinControls.dll
Syntax
public class Chord : IComparable
Constructors
Chord()
Initializes a new instance of the Chord class.
Declaration
public Chord()
Chord(List<Keys>)
Initializes a new isntance of the Chord class using a list of keys.
Declaration
public Chord(List<Keys> keys)
Parameters
System.Collections.Generic.List<System.Windows.Forms.Keys>
keys
|
Chord(List<Keys>, ChordModifier)
Initializes a new instance of the Chord class using a list of keys and %chord modifier:Telerik.WinControls.Keyboard.ChordModifier%.
Declaration
public Chord(List<Keys> keys, ChordModifier chordModifier)
Parameters
System.Collections.Generic.List<System.Windows.Forms.Keys>
keys
|
ChordModifier
chordModifier
|
Chord(String)
Initializes a new instance of the Chord class using a string of keys.
Declaration
public Chord(string keys)
Parameters
System.String
keys
|
Properties
ChordKeys
Gets the chord keys.
Declaration
public string ChordKeys { get; }
Property Value
System.String
|
ChordModifier
Gets or sets the chord modifier.
Declaration
public ChordModifier ChordModifier { get; set; }
Property Value
ChordModifier
|
Keys
Gets or sets the keys in this chord.
Declaration
public string Keys { get; set; }
Property Value
System.String
|
KeysInternal
Gets or sets a list of keys in this instance.
Declaration
public List<Keys> KeysInternal { get; set; }
Property Value
System.Collections.Generic.List<System.Windows.Forms.Keys>
|
ModifierKeys
Gets the modifier strings.
Declaration
public string ModifierKeys { get; }
Property Value
System.String
|
Methods
Clear()
Clears the chord.
Declaration
public void Clear()
CompareTo(Object)
Compares two instance for equality.
Declaration
public int CompareTo(object obj)
Parameters
System.Object
obj
|
Returns
System.Int32
|
Implements
ProccessModifiers()
Processes the modifiers.
Declaration
public void ProccessModifiers()
ReverseProccessModifiers()
Declaration
public void ReverseProccessModifiers()
ToString()
Retrieves the string representation of the instance.
Declaration
public override string ToString()
Returns
System.String
|