IVsDropdownBar.GetClient(IVsDropdownBarClient) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the client associated with this drop-down bar.
public:
int GetClient([Runtime::InteropServices::Out] Microsoft::VisualStudio::TextManager::Interop::IVsDropdownBarClient ^ % ppClient);
public:
int GetClient([Runtime::InteropServices::Out] Microsoft::VisualStudio::TextManager::Interop::IVsDropdownBarClient ^ & ppClient);
int GetClient([Runtime::InteropServices::Out] Microsoft::VisualStudio::TextManager::Interop::IVsDropdownBarClient const & & ppClient);
public int GetClient (out Microsoft.VisualStudio.TextManager.Interop.IVsDropdownBarClient ppClient);
abstract member GetClient : IVsDropdownBarClient -> int
Public Function GetClient (ByRef ppClient As IVsDropdownBarClient) As Integer
Parameters
- ppClient
- IVsDropdownBarClient
[out] Pointer to the client. See IVsDropdownBarClient.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsDropdownBar::GetClient(
[out] IVsDropdownBarClient **ppClient
);