AutomationPeer.EventsSource Property

Definition

Gets or sets an AutomationPeer that is reported to the automation client as the source for all the events that come from this AutomationPeer. See Remarks.

public:
 property AutomationPeer ^ EventsSource { AutomationPeer ^ get(); void set(AutomationPeer ^ value); };
AutomationPeer EventsSource();

void EventsSource(AutomationPeer value);
public AutomationPeer EventsSource { get; set; }
var automationPeer = automationPeer.eventsSource;
automationPeer.eventsSource = automationPeer;
Public Property EventsSource As AutomationPeer

Property Value

The AutomationPeer that is the source of events.

Remarks

EventsSource is typically set by AutomationPeer implementations in cases where the automation provider element is a child element of another element that also has a peer, and the best automation experience for clients is to treat the parent as the source for automation events. In such cases, the child element's peer implementation sets EventsSource to return the AutomationPeer of the parent element.

Applies to