Partilhar via


Propriedade TextSelection.AnchorPoint

Obtém o ponto de origem da seleção.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE. dll)

Sintaxe

ReadOnly Property AnchorPoint As VirtualPoint

Dim instance As TextSelection
Dim value As VirtualPoint

value = instance.AnchorPoint
VirtualPoint AnchorPoint { get; }
property VirtualPoint^ AnchorPoint {
    VirtualPoint^ get ();
}
function get AnchorPoint () : 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 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, realize Editarar pontos 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 AnchorPointExample()
    ' Before running this example, open a text document.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection
    Dim objAnchor As VirtualPoint = objSel.AnchorPoint
    ' objAnchor is "live", tied to the position of the actual selection, 
    ' so it will reflect any changes. iCol and iRow are created here to 
    ' save a "snapshot" of the anchor point's position at this time.
    Dim iCol As Long = objAnchor.DisplayColumn
    Dim iRow As Long = objAnchor.Line
    ' As the selection is extended, the active point moves but the anchor 
    ' point remains in place.
    objSel.StartOfDocument(True)
    objSel.EndOfDocument(True)

    If (iCol = objAnchor.DisplayColumn And iRow = objAnchor.Line) Then
        MsgBox("The anchor point has remained in place at row " & iRow & ", display column " & iCol)
    End If
End Sub

Permissões

Consulte também

Referência

TextSelection Interface

TextSelection Membros

Espaço para nome EnvDTE