AutomationPeer.EventsSource Property
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.
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.