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.
Determines whether the specified logical view is active.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function IsLogicalViewActive ( _
ByRef rguidLogicalView As Guid, _
<OutAttribute> ByRef pIsActive As Integer _
) As Integer
'Usage
Dim instance As IVsMultiViewDocumentView
Dim rguidLogicalView As Guid
Dim pIsActive As Integer
Dim returnValue As Integer
returnValue = instance.IsLogicalViewActive(rguidLogicalView, _
pIsActive)
int IsLogicalViewActive(
ref Guid rguidLogicalView,
out int pIsActive
)
int IsLogicalViewActive(
[InAttribute] Guid% rguidLogicalView,
[OutAttribute] int% pIsActive
)
abstract IsLogicalViewActive :
rguidLogicalView:Guid byref *
pIsActive:int byref -> int
function IsLogicalViewActive(
rguidLogicalView : Guid,
pIsActive : int
) : int
Parameters
- rguidLogicalView
Type: System.Guid%
[in] GUID identifying the logical view.
- pIsActive
Type: System.Int32%
[out, retval] If true, then the specified logical view is the active view.
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 IVsMultiViewDocumentView::IsLogicalViewActive(
[in] REFGUID rguidLogicalView,
[out, retval] BOOL *pIsActive
);
.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.
See Also
Reference
IVsMultiViewDocumentView Interface