IUIAutomation::AddPropertyChangedEventHandlerNativeArray method (uiautomationclient.h)
Registers a method that handles a native array of property-changed events.
Syntax
HRESULT AddPropertyChangedEventHandlerNativeArray(
[in] IUIAutomationElement *element,
[in] TreeScope scope,
[in] IUIAutomationCacheRequest *cacheRequest,
[in] IUIAutomationPropertyChangedEventHandler *handler,
[in] PROPERTYID *propertyArray,
[in] int propertyCount
);
Parameters
[in] element
Type: IUIAutomationElement*
A pointer to the UI Automation element associated with the event handler.
[in] scope
Type: TreeScope
The scope of events to be handled; that is, whether they are on the element itself, or on its ancestors and children.
[in] cacheRequest
Type: IUIAutomationCacheRequest*
A pointer to a cache request, or NULL if no caching is wanted.
[in] handler
Type: IUIAutomationPropertyChangedEventHandler*
A pointer to the object that handles the event.
[in] propertyArray
Type: PROPERTYID*
A pointer to the identifiers of the UI Automation properties of interest. For a list of property IDs, see Property Identifiers.
[in] propertyCount
Type: int
The number of property identifiers in propertyArray.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
example
For code examples that show how to implement interfaces that enable clients to receive and handle Microsoft UI Automation events (including AddPropertyChangedEventHandlerNativeArray), see How to Implement Event Handlers.
Remarks
The UI item specified by element might not support the properties specified by the propertyArray parameter.
This method serves the same purpose as IUIAutomation::AddPropertyChangedEventHandler, but takes a normal array of property identifiers instead of a SAFEARRAY.
A UI Automation client should not use multiple threads to add or remove event handlers. Unexpected behavior can result if one event handler is being added or removed while another is being added or removed in the same client process.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista, Windows XP with SP3 and Platform Update for Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008, Windows Server 2003 with SP2 and Platform Update for Windows Server 2008 [desktop apps only] |
Target Platform | Windows |
Header | uiautomationclient.h (include UIAutomation.h) |
See also
AddPropertyChangedEventHandler
Caching UI Automation Properties and Control Patterns
Conceptual
Reference
RemovePropertyChangedEventHandler