Condividi tramite


Metodo IPropertyValueStatics::CreateEmpty (windows.foundation.h)

Crea un nuovo oggetto IPropertyValue che rappresenta un valore vuoto.

Sintassi

HRESULT CreateEmpty(
  [out, retval] IInspectable **propertyValue
);

Parametri

[out, retval] propertyValue

Tipo: IInspectable**

Puntatore a un nuovo oggetto con la relativa proprietà Type impostata su PropertyType_Empty. Nessun valore viene archiviato nel nuovo oggetto. Utilizzare il metodo IUnknown::QueryInterface per ottenere l'interfaccia IPropertyValue per l'oggetto.

Valore restituito

Tipo: HRESULT

Questo metodo può restituire uno di questi valori.

Codice restituito Descrizione
S_OK
Il valore della proprietà è stato creato correttamente.
E_POINTER
value è NULL.
E_OUTOFMEMORY
Impossibile creare l'oggetto IPropertyValue .

Commenti

Utilizzare il metodo CreateEmpty per rappresentare un valore di proprietà vuoto o non impostato in un archivio delle proprietà.

Requisiti

Requisito Valore
Client minimo supportato Windows 8
Server minimo supportato Windows Server 2012
Piattaforma di destinazione Windows
Intestazione windows.foundation.h

Vedi anche

IPropertyValueStatics