ID2D1Properties::GetSubProperties(UINT32,ID2D1Properties**) method (d2d1_1.h)

Gets the sub-properties of the provided property by index.

Syntax

HRESULT GetSubProperties(
        UINT32          index,
  [out] ID2D1Properties **subProperties
);

Parameters

index

Type: UINT32

The index of the sub-properties to be retrieved.

[out] subProperties

Type: ID2D1Properties**

When this method returns, contains the address of a pointer to the sub-properties.

Return value

Type: HRESULT

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

HRESULT Description
S_OK No error occurred.
D2DERR_NO_SUBPROPERTIES The specified property does not exist.

Remarks

If there are no sub-properties, subProperties will be NULL, and D2DERR_NO_SUBPROPERTIES will be returned.

Requirements

Requirement Value
Minimum supported client Windows 8 and Platform Update for Windows 7 [desktop apps | UWP apps]
Minimum supported server Windows Server 2012 and Platform Update for Windows Server 2008 R2 [desktop apps | UWP apps]
Target Platform Windows
Header d2d1_1.h
Library D2d1.lib
DLL D2d1.dll

See also

ID2D1Properties