AutomationPeer.ListenerExists(AutomationEvents) Method

Definition

Gets a value that indicates whether UI Automation is listening for the specified event.

C#
public static bool ListenerExists(System.Windows.Automation.Peers.AutomationEvents eventId);

Parameters

eventId
AutomationEvents

One of the enumeration values.

Returns

A boolean that indicates whether UI Automation is listening for the event.

Remarks

Typically, you call this method before creating the AutomationPeer that raises the event. This method is a performance measure because if UI Automation does not listen for the event, it does not make sense to create a peer to raise one.

Note

This method is static and only answers if a delegate listens for the specified event in UI Automation, not for an event on a specific element. UI Automation can create broadcast listeners; therefore the per-element information is irrelevant.

Applies to

Product Versions
.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