Dart.Emulation Namespace > KeyPressEventArgs Class : Bytes Property |
Public ReadOnly Property Bytes As Byte()
Dim instance As KeyPressEventArgs Dim value() As Byte value = instance.Bytes
public byte[] Bytes {get;}
public: __property byte[]* get_Bytes();
public: property array<byte>^ Bytes { array<byte>^ get(); }
Often the data generated by a key press will simply be the byte representation of the character that was pressed. However, some single key presses can result in multiple character representations (as a result of internal mapping). You can access the data generated as the result of a key press via the this property.