IPropertyValue::GetBoolean method (windows.foundation.h)

Gets the 8-bit Boolean value that is stored in the current IPropertyValue object.

Syntax

HRESULT GetBoolean(
  [out, retval] boolean *value
);

Parameters

[out, retval] value

Type: BOOLEAN*

The 8-bit Boolean value.

Return value

Type: HRESULT

This method can return one of these values.

Return code Description
S_OK
The property value was returned successfully.
E_POINTER
value is NULL.
E_INCORRECT_TYPE
The type of value does not match the value of the Type property.

Requirements

Requirement Value
Minimum supported client Windows 8
Minimum supported server Windows Server 2012
Target Platform Windows
Header windows.foundation.h

See also

CreateBoolean

IPropertyValue