<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="5000.1.0" />

KeysCombination

public class KeysCombination
Represent the KeysCombination for KeyboardShortcut, indicates whether additional keys are used as part of the shortcut.
public bool Alt { get; set; }

Gets or sets a value indicating whether the Alt key is used in the key combination.

public bool Ctrl { get; set; }

Gets or sets a value indicating whether the Control key is used in the key combination.

public int Key { get; set; }

Gets or sets a key used in a specific keyboard shortcut combination, see platform API documentation for number -> key mappings list.

public bool Shift { get; set; }

Gets or sets a value indicating whether the Shift key is used in the key combination.

public KeysCombination()