Compartir a través de


TextSelection.MoveToAbsoluteOffset (Método)

Mueve el punto activo hasta la posición dada absoluta de desplazamiento de caracteres, basada en 1.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
Sub MoveToAbsoluteOffset ( _
    Offset As Integer, _
    Extend As Boolean _
)
void MoveToAbsoluteOffset(
    int Offset,
    bool Extend
)
void MoveToAbsoluteOffset(
    [InAttribute] int Offset, 
    [InAttribute] bool Extend
)
abstract MoveToAbsoluteOffset : 
        Offset:int * 
        Extend:bool -> unit 
function MoveToAbsoluteOffset(
    Offset : int, 
    Extend : boolean
)

Parámetros

  • Offset
    Tipo: System.Int32
    Obligatorio.Un índice del carácter desde el inicio del documento, comenzando por uno.
  • Extend
    Tipo: System.Boolean
    Opcional.Valor predeterminado = false.Valor booleano para extender la selección actual.Si el parámetro Extend es true, el extremo activo de la selección se desplaza a la ubicación mientras que el extremo de delimitación permanece donde está.En caso contrario, ambos extremos se desplazan a la posición especificada.Este argumento sólo se aplica al objeto TextSelection.

Ejemplos

Sub MoveToAbsoluteOffsetExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   ' Go to first line in document and select it.
   objSel.GotoLine(1, True)
   ' Move to various lines and offsets (character columns).
   objSel.MoveToAbsoluteOffset(3, True)
   objSel.MoveToDisplayColumn(3, True)
End Sub

Seguridad de .NET Framework

Vea también

Referencia

TextSelection Interfaz

EnvDTE (Espacio de nombres)