Compartir a través de


IVsTextStream.CreateEditPoint (Método)

Crea un objeto de EditPoint en la ubicación especificada en el búfer de texto.

Espacio de nombres:  Microsoft.VisualStudio.TextManager.Interop
Ensamblado:  Microsoft.VisualStudio.TextManager.Interop (en Microsoft.VisualStudio.TextManager.Interop.dll)

Sintaxis

'Declaración
Function CreateEditPoint ( _
    iPosition As Integer, _
    <OutAttribute> ByRef ppEditPoint As Object _
) As Integer
int CreateEditPoint(
    int iPosition,
    out Object ppEditPoint
)
int CreateEditPoint(
    [InAttribute] int iPosition, 
    [OutAttribute] Object^% ppEditPoint
)
abstract CreateEditPoint : 
        iPosition:int * 
        ppEditPoint:Object byref -> int
function CreateEditPoint(
    iPosition : int, 
    ppEditPoint : Object
) : int

Parámetros

  • iPosition
    Tipo: Int32

    [in] Posición en el búfer de texto.

  • ppEditPoint
    Tipo: Object%

    [out] Puntero al objeto de EditPoint creado.

Valor devuelto

Tipo: Int32
si el método tiene éxito, devuelve S_OK.Si se produce un error, devuelve un código de error.

Comentarios

Prototipo COM

de textmgr.idl:

HRESULT IVsTextStream::CreateEditPoint(
   [in] long iPosition,
   [out] IDispatch **ppEditPoint
);

los objetos deEditPoint son una manera alternativa de escribir en el búfer, y representan una ubicación en el búfer de texto. Estos objetos son similares a los objetos de TextSelection , salvo que operan sobre datos en el búfer de texto en lugar de en el texto mostrado en una ventana de código.

Nota

Cualquier operación que intenta modificar un búfer de texto generará un error si afecta a los caracteres que se incluyen en un bloque readonly, o si el búfer propia de texto es de solo lectura.

Seguridad de .NET Framework

Vea también

Referencia

IVsTextStream Interfaz

Microsoft.VisualStudio.TextManager.Interop (Espacio de nombres)