Partager via


Méthode IDirectManipulationViewport::SetTag (directmanipulation.h)

Définit une balise de fenêtre d’affichage.

Syntaxe

HRESULT SetTag(
  [in, optional] IUnknown *object,
  [in]           UINT32   id
);

Paramètres

[in, optional] object

Partie objet de la balise.

[in] id

Partie ID de la balise.

Valeur retournée

Si la méthode réussit, elle retourne S_OK. Sinon, elle retourne un code d’erreur HRESULT.

Notes

Une balise est un couplage d’un ID entier avec un objet COM (Component Object Model). Il peut être utilisé par une application pour identifier la fenêtre d’affichage.

Le paramètre d’objet est facultatif, de sorte que la méthode peut définir uniquement un ID.

Exemples

L’exemple suivant montre la syntaxe de cette méthode.

IUnknown* pUnk = ...;
UINT32 id = ...;

HRESULT hr = pRegion->SetTag(pUnk, id);

Spécifications

   
Client minimal pris en charge Windows 8 [applications de bureau uniquement]
Serveur minimal pris en charge Windows Server 2012 [applications de bureau uniquement]
Plateforme cible Windows
En-tête directmanipulation.h

Voir aussi

IDirectManipulationViewport