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.
Creates a TextPoint object at the given location in the text buffer.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Public Overridable Function CreateTextPoint ( _
    iLine As Integer, _
    iIndex As Integer, _
    <OutAttribute> ByRef ppTextPoint As Object _
) As Integer
public virtual int CreateTextPoint(
    int iLine,
    int iIndex,
    out Object ppTextPoint
)
public:
virtual int CreateTextPoint(
    [InAttribute] int iLine, 
    [InAttribute] int iIndex, 
    [OutAttribute] Object^% ppTextPoint
)
abstract CreateTextPoint : 
        iLine:int * 
        iIndex:int * 
        ppTextPoint:Object byref -> int 
override CreateTextPoint : 
        iLine:int * 
        iIndex:int * 
        ppTextPoint:Object byref -> int 
public function CreateTextPoint(
    iLine : int, 
    iIndex : int, 
    ppTextPoint : Object
) : int
Parameters
- iLine
 Type: System.Int32
 [in] Specified line to create the TextPoint object.
- iIndex
 Type: System.Int32
 [in] Specified index position within the line to create the TextPoint object.
- ppTextPoint
 Type: System.Object%
 [out] Pointer to the TextPoint object created.
Return Value
Type: System.Int32
Implements
IVsTextLines.CreateTextPoint(Int32, Int32, Object%)
.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.