ICoreWindow.CharacterReceived Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the event that is fired when a new character is received by the input queue.
// Register
event_token CharacterReceived(TypedEventHandler<CoreWindow, CharacterReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void CharacterReceived(event_token const* cookie) const;
// Revoke with event_revoker
ICoreWindow::CharacterReceived_revoker CharacterReceived(auto_revoke_t, TypedEventHandler<CoreWindow, CharacterReceivedEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,CharacterReceivedEventArgs> CharacterReceived;
function onCharacterReceived(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("characterreceived", onCharacterReceived);
iCoreWindow.removeEventListener("characterreceived", onCharacterReceived);
- or -
iCoreWindow.oncharacterreceived = onCharacterReceived;
Event CharacterReceived As TypedEventHandler(Of CoreWindow, CharacterReceivedEventArgs)