Skip to content

Latest commit

 

History

History
125 lines (100 loc) · 4.19 KB

nf-windows-foundation-ipropertyvaluestatics-createdouble.md

File metadata and controls

125 lines (100 loc) · 4.19 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:windows.foundation.IPropertyValueStatics.CreateDouble
IPropertyValueStatics::CreateDouble (windows.foundation.h)
Creates a new IPropertyValue object that contains the specified 64-bit floating point value.
CreateDouble
CreateDouble method [Windows Runtime]
CreateDouble method [Windows Runtime]
IPropertyValueStatics interface
IPropertyValueStatics interface [Windows Runtime]
CreateDouble method
IPropertyValueStatics.CreateDouble
IPropertyValueStatics.IPropertyValueStatics
IPropertyValueStatics::CreateDouble
IPropertyValueStatics::IPropertyValueStatics
windows/IPropertyValueStatics::CreateDouble
winrt.ipropertyvaluefactory_createdouble
winrt.ipropertyvaluestatics_createdouble
winrt\ipropertyvaluestatics_createdouble.htm
WinRT
66BB900A-797A-4589-AB9F-C35371F2671E
12/05/2018
CreateDouble, CreateDouble method [Windows Runtime], CreateDouble method [Windows Runtime],IPropertyValueStatics interface, IPropertyValueStatics interface [Windows Runtime],CreateDouble method, IPropertyValueStatics.CreateDouble, IPropertyValueStatics.IPropertyValueStatics, IPropertyValueStatics::CreateDouble, IPropertyValueStatics::IPropertyValueStatics, windows/IPropertyValueStatics::CreateDouble, winrt.ipropertyvaluefactory_createdouble, winrt.ipropertyvaluestatics_createdouble
windows.foundation.h
Windows
Windows 8
Windows Server 2012
Windows.Foundation.idl
Windows
19H1
IPropertyValueStatics::CreateDouble
windows.foundation/IPropertyValueStatics::CreateDouble
c++
APIRef
kbSyntax
COM
Windows.Foundation.h
IPropertyValueStatics.CreateDouble

IPropertyValueStatics::CreateDouble (windows.foundation.h)

-description

Creates a new IPropertyValue object that contains the specified 64-bit floating point value.

-parameters

-param value [in]

Type: DOUBLE

The 64-bit floating point value to store.

-param propertyValue [out, retval]

Type: IInspectable**

A pointer to a new object that contains value. Use the IUnknown::QueryInterface method to get the IPropertyValue interface for the object.

-returns

Type: HRESULT

This method can return one of these values.

Return code Description
S_OK
The property value was created successfully.
E_POINTER
value is NULL.
E_OUTOFMEMORY
The IPropertyValue object could not be created.

-remarks

Use the CreateDouble method to store a value in an IPropertyValue object. You can add the IPropertyValue object to a property store. Use the GetDouble method to retrieve the value from the IPropertyValue object.

-see-also

IPropertyValue::GetDouble

IPropertyValueStatics