KeyInputStep
Namespace: Hex1b.Automation
Assembly: Hex1b.dll
A step that sends a single key event.
csharp
public sealed record KeyInputStep : TestStep, IEquatable<TestStep>, IEquatable<KeyInputStep>Inheritance
Object → TestStep → KeyInputStep
Implements
Constructors
KeyInputStep(Hex1bKey, string, Hex1bModifiers)
A step that sends a single key event.
Parameters:
Key(Hex1bKey):Text(String):Modifiers(Hex1bModifiers):
csharp
public KeyInputStep(Hex1bKey Key, string Text, Hex1bModifiers Modifiers)Properties
Key
Returns: Hex1bKey
csharp
public Hex1bKey Key { get; init; }Modifiers
Returns: Hex1bModifiers
csharp
public Hex1bModifiers Modifiers { get; init; }Text
Returns: String
csharp
public string Text { get; init; }