Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds a new tab to the Toolbox.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function AddTab ( _
    lpszTab As String _
) As Integer
int AddTab(
    string lpszTab
)
int AddTab(
    [InAttribute] String^ lpszTab
)
abstract AddTab : 
        lpszTab:string -> int
function AddTab(
    lpszTab : String
) : int
Parameters
- lpszTab 
 Type: String- [in] The localized name of the tab to add to the Toolbox. The localized name can be obtained from the invariant non-localized name by calling GetIDOfTab. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsToolbox::AddTab(
   [in]LPCOLESTR lpszTab
);
Note
If you specify the name of a tab that has already been added, then this method returns E_FAIL.
.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.