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.
Check whether a given IVsTextView is owned by the Code Definition tool window.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function IsCodeDefView ( _
pIVsTextView As IVsTextView, _
<OutAttribute> ByRef pfIsCodeDefView As Integer _
) As Integer
'Usage
Dim instance As IVsCodeDefView
Dim pIVsTextView As IVsTextView
Dim pfIsCodeDefView As Integer
Dim returnValue As Integer
returnValue = instance.IsCodeDefView(pIVsTextView, _
pfIsCodeDefView)
int IsCodeDefView(
IVsTextView pIVsTextView,
out int pfIsCodeDefView
)
int IsCodeDefView(
[InAttribute] IVsTextView^ pIVsTextView,
[OutAttribute] int% pfIsCodeDefView
)
abstract IsCodeDefView :
pIVsTextView:IVsTextView *
pfIsCodeDefView:int byref -> int
function IsCodeDefView(
pIVsTextView : IVsTextView,
pfIsCodeDefView : int
) : int
Parameters
- pIVsTextView
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextView
[in] A IVsTextView interface to the view.
- pfIsCodeDefView
Type: System.Int32%
[out] true if the view is owned by the Code Definition tool window; otherwise false.
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 vsshell80.idl:
HRESULT IsCodeDefView(
[in] IVsTextView *pIVsTextView,
[out] BOOL *pfIsCodeDefView
);
.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.