TextPattern.TextSelectionChangedEvent Field

Definition

Identifies the event raised when the text selection is modified.

C#
public static readonly System.Windows.Automation.AutomationEvent TextSelectionChangedEvent;

Field Value

Examples

C#
// Initialize a selection changed listener.
// The target selection is reflected in the client.
Automation.AddAutomationEventHandler(
    TextPattern.TextSelectionChangedEvent,
    targetDocument,
    TreeScope.Element,
    OnTextSelectionChange);

Remarks

Some text controls handle the text insertion point (cursor) as a zero-width text selection and might raise TextSelectionChangedEvent when the cursor is moved.

Nota

To follow cursor movements, UI Automation clients are advised to keep track of insertion point changes by listening for corresponding UI Automation element events rather than depending on TextSelectionChangedEvent.

This identifier is used by UI Automation client applications UI Automation providers should use the equivalent field in TextPatternIdentifiers.

Applies to

Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also