Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Sets the type of view for the specified tab.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function SetTabView ( _
lpszTab As String, _
tv As VSTBXTABVIEW _
) As Integer
'Usage
Dim instance As IVsToolbox2
Dim lpszTab As String
Dim tv As VSTBXTABVIEW
Dim returnValue As Integer
returnValue = instance.SetTabView(lpszTab, _
tv)
int SetTabView(
string lpszTab,
VSTBXTABVIEW tv
)
int SetTabView(
[InAttribute] String^ lpszTab,
[InAttribute] VSTBXTABVIEW tv
)
abstract SetTabView :
lpszTab:string *
tv:VSTBXTABVIEW -> int
function SetTabView(
lpszTab : String,
tv : VSTBXTABVIEW
) : int
Parameters
- lpszTab
Type: System.String
[in] Toolbox tab to set the view for.
- tv
Type: Microsoft.VisualStudio.Shell.Interop.VSTBXTABVIEW
[in] Determines whether the tab is in list view or icon view. For a list of tv values, see VSTBXTABVIEW.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsToolbox.SetTabView(String, VSTBXTABVIEW)
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsToolbox2::SetTabView(
[in]LPCOLESTR lpszTab,
[in]VSTBXTABVIEW tv
);
.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.