IVsTextTipWindow.GetContextStream Method (Int32%, Int32%)

Returns the context stream.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Déclaration
Function GetContextStream ( _
    <OutAttribute> ByRef piPos As Integer, _
    <OutAttribute> ByRef piLength As Integer _
) As Integer
'Utilisation
Dim instance As IVsTextTipWindow
Dim piPos As Integer
Dim piLength As Integer
Dim returnValue As Integer

returnValue = instance.GetContextStream(piPos, _
    piLength)
int GetContextStream(
    out int piPos,
    out int piLength
)
int GetContextStream(
    [OutAttribute] int% piPos, 
    [OutAttribute] int% piLength
)
abstract GetContextStream : 
        piPos:int byref * 
        piLength:int byref -> int 
function GetContextStream(
    piPos : int, 
    piLength : int
) : int

Parameters

  • piPos
    Type: System.Int32%
    [out] Starting position of the context stream.
  • piLength
    Type: System.Int32%
    [out] Length of the context stream from the starting position (piPos).

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsTipWindow.GetContextStream(Int32%, Int32%)

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextTipWindow::GetContextStream(
   [out] long *piPos,
   [out] long *piLength
);

.NET Framework Security

See Also

Reference

IVsTextTipWindow Interface

IVsTextTipWindow Members

GetContextStream Overload

Microsoft.VisualStudio.TextManager.Interop Namespace