IVsToolbox.SetTabView Method
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
‘선언
Function SetTabView ( _
lpszTab As String, _
tv As VSTBXTABVIEW _
) As Integer
‘사용 방법
Dim instance As IVsToolbox
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.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsToolbox::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.