Propriedade TextSelection.ActivePoint
Obtém o ponto de extremidade atual da seleção.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE. dll)
Sintaxe
ReadOnly Property ActivePoint As VirtualPoint
Dim instance As TextSelection
Dim value As VirtualPoint
value = instance.ActivePoint
VirtualPoint ActivePoint { get; }
property VirtualPoint^ ActivePoint {
VirtualPoint^ get ();
}
function get ActivePoint () : VirtualPoint
Valor da propriedade
Tipo: EnvDTE.VirtualPoint
A VirtualPoint object.
Comentários
Embora objetos TextPoint indicar o local do texto selecionado na janela do Editor, eles não marcar o local no buffer.Espaço virtual — a área além do final da linha — também é controlado somente na janela Editor.Conseqüentemente, quando você usa um objeto EditPoint no buffer de texto para modificar o texto, o que acontece com o texto selecionado não está definido.Por exemplo, um comando pode começam com texto selecionado, obter pontos de Editarar e, em seguida, Alterar o buffer.Para garantir que o texto selecionado estiver em um determinado local, você explicitamente deve colocar o texto selecionado no local no final do seu comando.
Exemplos
Sub ActivePointExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
Dim objActive As VirtualPoint = objSel.ActivePoint
' Collapse the selection to the beginning of the line.
objSel.StartOfLine()
' objActive is "live", tied to the position of the actual selection,
' so it will reflect the new position.
Dim iCol As Long = objActive.DisplayColumn
' Move the selection to the end of the line.
objSel.EndOfLine()
MsgBox("The length of the insertion point line is " & (objActive.DisplayColumn - iCol) & " display characters.")
End Sub
Permissões
- Confiar total para o chamador imediato. Este membro não pode ser usado pelo código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de códigos parcialmente Confiável.