KeyboardMessage PressedKeys Property Delta Engine Documentation

Namespace: DeltaEngine.Input
Assembly: DeltaEngine.Input (in DeltaEngine.Input.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public Key[] PressedKeys { get; }

Property Value

Type:  Key 
Remarks

Tests: DeltaEngine.Input.Tests.KeyboardMessagesTests
Examples

1 unit tests call DeltaEngine.Input.KeyboardMessage.PressedKeys
[Test]
public void PressedKeyShouldBeEnter()
{
    Assert.AreEqual(new[] { Key.Enter }, keyboardMessage.PressedKeys);
}
See Also