IVsToolbox3.GetIDOfTab Method
Retrieves the canonical ID for the given localized name of the Toolbox tab.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetIDOfTab ( _
lpszTabName As String, _
<OutAttribute> ByRef pbstrTabID As String _
) As Integer
int GetIDOfTab(
string lpszTabName,
out string pbstrTabID
)
int GetIDOfTab(
[InAttribute] String^ lpszTabName,
[OutAttribute] String^% pbstrTabID
)
abstract GetIDOfTab :
lpszTabName:string *
pbstrTabID:string byref -> int
function GetIDOfTab(
lpszTabName : String,
pbstrTabID : String
) : int
Parameters
lpszTabName
Type: String[in] The localized name of the Toolbox tab.
pbstrTabID
Type: String%[out] The locale-invariant ID of the Toolbox tab.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsToolbox3::GetIDOfTab(
[in] LPCOLESTR lpszTabName,
[out] BSTR *pbstrTabID
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.