IVsDropdownBar.Attach, méthode
Crée la combinaison de fenêtre et de liste déroulante et installe un lien entre la barre déroulante et son client.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function Attach ( _
hwndParent As IntPtr, _
cCombos As Integer, _
pClient As IVsDropdownBarClient _
) As Integer
int Attach(
IntPtr hwndParent,
int cCombos,
IVsDropdownBarClient pClient
)
int Attach(
[InAttribute] IntPtr hwndParent,
[InAttribute] int cCombos,
[InAttribute] IVsDropdownBarClient^ pClient
)
abstract Attach :
hwndParent:IntPtr *
cCombos:int *
pClient:IVsDropdownBarClient -> int
function Attach(
hwndParent : IntPtr,
cCombos : int,
pClient : IVsDropdownBarClient
) : int
Paramètres
hwndParent
Type : IntPtr[in] handle à la fenêtre parente.
cCombos
Type : Int32[in] la zone déroulant de barre/fenêtre.
pClient
Type : Microsoft.VisualStudio.TextManager.Interop.IVsDropdownBarClient[in] pointeur au client déroulant de barre.
Valeur de retour
Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.
Notes
Attach est appelé par AddDropdownBar. Attach crée la combinaison de fenêtre et de déroulement et installe un lien entre la barre déroulante et son IVsDropdownBarClient. N'appelez pas cette fonction à moins que vous passer IVsDropdownBarManager.
Signature de COM
De textmgr.idl :
HRESULT IVsDropdownBar::Attach(
[in] HWND hwndParent,
[in] long cCombos,
[in] IVsDropdownBarClient *pClient
);
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.