DataObject.IDataObject.GetCanonicalFormatEtc(FORMATETC, FORMATETC) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
virtual int System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc(System::Runtime::InteropServices::ComTypes::FORMATETC % pformatetcIn, [Runtime::InteropServices::Out] System::Runtime::InteropServices::ComTypes::FORMATETC % pformatetcOut) = System::Runtime::InteropServices::ComTypes::IDataObject::GetCanonicalFormatEtc;
[System.Security.SecurityCritical]
int IDataObject.GetCanonicalFormatEtc (ref System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcIn, out System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcOut);
int IDataObject.GetCanonicalFormatEtc (ref System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcIn, out System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcOut);
[<System.Security.SecurityCritical>]
abstract member System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc : FORMATETC * FORMATETC -> int
override this.System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc : FORMATETC * FORMATETC -> int
abstract member System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc : FORMATETC * FORMATETC -> int
override this.System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc : FORMATETC * FORMATETC -> int
Function GetCanonicalFormatEtc (ByRef pformatetcIn As FORMATETC, ByRef pformatetcOut As FORMATETC) As Integer Implements IDataObject.GetCanonicalFormatEtc
Paramètres
- pformatetcIn
- FORMATETC
Pointeur vers une structure FORMATETC, passée par référence, qui définit le format, le support et le périphérique cible que l'appelant souhaite utiliser pour récupérer des données dans un appel suivant, tel que GetData(FORMATETC, STGMEDIUM). Le membre TYMED n'est pas significatif dans ce cas et doit être ignoré.
- pformatetcOut
- FORMATETC
Cette méthode retourne un pointeur vers une structure FORMATETC qui contient les informations les plus générales possibles pour un rendu spécifique, en le rendant canoniquement équivalent à formatetcIn
. L'appelant doit allouer cette structure et la méthode GetCanonicalFormatEtc(FORMATETC, FORMATETC) doit remplir les données. Pour récupérer des données dans un appel suivant, tel que GetData(FORMATETC, STGMEDIUM), l'appelant utilise la valeur fournie de formatOut
, à moins que la valeur fournie ne soit null
. Cette valeur est null
si la méthode retourne DATA_S_SAMEFORMATETC
. Le membre TYMED n'est pas significatif dans ce cas et doit être ignoré. Ce paramètre est passé sans être initialisé.
Retours
Cette méthode prend en charge les valeurs de retour E_INVALIDARG, E_UNEXPECTED et E_OUTOFMEMORY standard, ainsi que les suivantes :
Valeur | Description |
---|---|
S_OK | La structure FORMATETC retournée est différente de celle qui a été passée. |
DATA_S_SAMEFORMATETC | Les structures FORMATETC sont identiques et la valeur null est retournée dans le paramètre formatOut .
|
DV_E_LINDEX | Il existe une valeur non valide pour lindex ; actuellement, seule la valeur -1 est prise en charge. |
DV_E_FORMATETC | Il existe une valeur non valide pour le paramètre pFormatetc .
|
OLE_E_NOTRUNNING | L'application n'est pas en cours d'exécution. |
Implémente
- Attributs
Remarques
Ce membre est une implémentation d'un membre d'interface explicite. Il peut uniquement être utilisé lorsque l'instance de DataObject est castée en interface IDataObject.