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.
Creates an EditPoint 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 CreateEditPoint ( _
iLine As Integer, _
iIndex As Integer, _
<OutAttribute> ByRef ppEditPoint As Object _
) As Integer
'Usage
Dim instance As VsTextBufferClass
Dim iLine As Integer
Dim iIndex As Integer
Dim ppEditPoint As Object
Dim returnValue As Integer
returnValue = instance.CreateEditPoint(iLine, _
iIndex, ppEditPoint)
public virtual int CreateEditPoint(
int iLine,
int iIndex,
out Object ppEditPoint
)
public:
virtual int CreateEditPoint(
[InAttribute] int iLine,
[InAttribute] int iIndex,
[OutAttribute] Object^% ppEditPoint
)
abstract CreateEditPoint :
iLine:int *
iIndex:int *
ppEditPoint:Object byref -> int
override CreateEditPoint :
iLine:int *
iIndex:int *
ppEditPoint:Object byref -> int
public function CreateEditPoint(
iLine : int,
iIndex : int,
ppEditPoint : Object
) : int
Parameters
- iLine
Type: System.Int32
[in] Line number of the EditPoint object in the text buffer.
- iIndex
Type: System.Int32
[in] Character index of the EditPoint object within the line.
- ppEditPoint
Type: System.Object%
[out] Pointer to the IDispatch interface.
Return Value
Type: System.Int32
Implements
IVsTextLines.CreateEditPoint(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.