Class KeysCombination
Represent the KeysCombination for KeyboardShortcut, indicates whether additional keys are used as part of the shortcut.
Inheritance
System.Object
KeysCombination
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: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class KeysCombination
Properties
| Improve this Doc View SourceAlt
Gets or sets a value indicating whether the Alt key is used in the key combination.
Declaration
public bool Alt { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Ctrl
Gets or sets a value indicating whether the Control key is used in the key combination.
Declaration
public bool Ctrl { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
Gets or sets a key used in a specific keyboard shortcut combination, see platform API documentation for number -> key mappings list.
Declaration
public int Key { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Shift
Gets or sets a value indicating whether the Shift key is used in the key combination.
Declaration
public bool Shift { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |