IMultipleViewProvider::GetSupportedViews method (uiautomationcore.h)

Retrieves a collection of control-specific view identifiers.

Syntax

HRESULT GetSupportedViews(
  [out, retval] SAFEARRAY **pRetVal
);

Parameters

[out, retval] pRetVal

Type: SAFEARRAY**

Receives a collection of control-specific integer values that identify the views available for a UI Automation element. This parameter is passed uninitialized.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

An empty array is returned by UIAutoCore.dll if the provider does not supply any view identifiers.

The collection of view identifiers must be identical for all instances of a control.

View identifier values can be passed to IMultipleViewProvider::GetViewName.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps | UWP apps]
Minimum supported server Windows Server 2003 [desktop apps | UWP apps]
Target Platform Windows
Header uiautomationcore.h (include UIAutomation.h)
DLL Uiautomationcore.dll

See also

Best Practices for Using Safe Arrays

Conceptual

IMultipleViewProvider

Reference

UI Automation Providers Overview