ExpKeyboardInput.CharacterReceived Event

Definition

// Register
event_token CharacterReceived(TypedEventHandler<ExpKeyboardInput, CharacterReceivedEventArgs const&> const& handler) const;

// Revoke with event_token
void CharacterReceived(event_token const* cookie) const;

// Revoke with event_revoker
ExpKeyboardInput::CharacterReceived_revoker CharacterReceived(auto_revoke_t, TypedEventHandler<ExpKeyboardInput, CharacterReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<ExpKeyboardInput,CharacterReceivedEventArgs> CharacterReceived;
function onCharacterReceived(eventArgs) { /* Your code */ }
expKeyboardInput.addEventListener("characterreceived", onCharacterReceived);
expKeyboardInput.removeEventListener("characterreceived", onCharacterReceived);
- or -
expKeyboardInput.oncharacterreceived = onCharacterReceived;
Public Custom Event CharacterReceived As TypedEventHandler(Of ExpKeyboardInput, CharacterReceivedEventArgs) 

Event Type

Applies to