<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

KeyCombination

public class KeyCombination
Representation of keyboard shortcut key combination
public bool Alt { get; set; }

Indicates whether or not Alt key should be pressed

public bool Ctrl { get; set; }

Indicates whether or not Ctrl key should be pressed

public int Key { get; set; }

Indicates number of additional key which should be pressed in combination

public bool Shift { get; set; }

Indicates whether or not Shift key should be pressed

public KeyCombination(bool shift, bool ctrl, bool alt, int key)

Constructor of KeyCombination class