AtspiUiaSource.AutomationSource.AddAutomationPropertyChangedEventHandler C# (CSharp) Method

AddAutomationPropertyChangedEventHandler() public method

public AddAutomationPropertyChangedEventHandler ( IElement element, TreeScope scope, AutomationPropertyChangedEventHandler eventHandler, AutomationProperty properties ) : void
element IElement
scope TreeScope
eventHandler AutomationPropertyChangedEventHandler
properties System.Windows.Automation.AutomationProperty
return void
		public void AddAutomationPropertyChangedEventHandler (IElement element,
		                                                      TreeScope scope,
		                                                      AutomationPropertyChangedEventHandler eventHandler,
		                                                      AutomationProperty [] properties)
		{
			PropertyChangedEventHandlerData data = new PropertyChangedEventHandlerData (
				element, scope, eventHandler, properties);
			propertyEventHandlers.Add (data);
		}