CharacterReceivedRoutedEventArgs CharacterReceivedRoutedEventArgs CharacterReceivedRoutedEventArgs CharacterReceivedRoutedEventArgs Class

Definition

Some information relates to pre-released product which may be substantially modified before it’s commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Prerelease APIs are identified by a Prerelease label.

[Contains prerelease APIs.]
Provides event data for the UIElement.CharacterReceived routed event.

public : sealed class CharacterReceivedRoutedEventArgs : RoutedEventArgs, ICharacterReceivedRoutedEventArgspublic sealed class CharacterReceivedRoutedEventArgs : RoutedEventArgs, ICharacterReceivedRoutedEventArgsPublic NotInheritable Class CharacterReceivedRoutedEventArgs Inherits RoutedEventArgs Implements ICharacterReceivedRoutedEventArgs// This API is not available in Javascript.
Inheritance
CharacterReceivedRoutedEventArgsCharacterReceivedRoutedEventArgsCharacterReceivedRoutedEventArgsCharacterReceivedRoutedEventArgs
Attributes
Windows 10 requirements
Device family
Windows 10 Insider Preview (introduced v10.0.16257.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v5)

Inherited Members

Inherited properties

Properties

Character Character Character Character

Prerelease. Gets the composed character associated with the UIElement.CharacterReceived event.

Note

A composed character is a single visual object derived from a sequence of one or more other characters.

public : char Character { get; }public char Character { get; }Public ReadOnly Property Character As char// This API is not available in Javascript.
Value
char char char char

The composed character associated with the UIElement.CharacterReceived event.

Handled Handled Handled Handled

Prerelease. Gets or sets a value that marks the routed event as handled. A true value for Handled prevents most handlers along the event route from handling the same event again.

public : PlatForm::Boolean Handled { get; set; }public bool Handled { get; set; }Public ReadWrite Property Handled As bool// This API is not available in Javascript.
Value
PlatForm::Boolean bool bool bool

true to mark the routed event handled. false to leave the routed event unhandled, which permits the event to potentially route further and be acted on by other handlers. The default is false.

See Also

KeyStatus KeyStatus KeyStatus KeyStatus

Prerelease. Gets the status of the physical key that raised the character-received event.

public : CorePhysicalKeyStatus KeyStatus { get; }public CorePhysicalKeyStatus KeyStatus { get; }Public ReadOnly Property KeyStatus As CorePhysicalKeyStatus// This API is not available in Javascript.

See Also