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.
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
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: Int32%- [out] true if the view is owned by the Code Definition tool window; otherwise false. 
Return Value
Type: 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.