TextSelection.ActivePoint 屬性
取得目前選取範圍的結束點。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property ActivePoint As VirtualPoint
VirtualPoint ActivePoint { get; }
property VirtualPoint^ ActivePoint {
VirtualPoint^ get ();
}
abstract ActivePoint : VirtualPoint with get
function get ActivePoint () : VirtualPoint
屬性值
類型:EnvDTE.VirtualPoint
VirtualPoint 物件。
備註
雖然 TextPoint 物件表示文字選取範圍的位置會在 [編輯器] 視窗中,它們不表示緩衝區的位置。 虛擬空間 (在行結尾之外的區域) 也只能在 [編輯器] 視窗中追蹤。 因此,,當您在文字緩衝區是使用 EditPoint 物件修改文字時,發生在文字選取範圍不會定義。 例如,命令可能開始文字選取範圍,取得編輯點,然後變更緩衝區。 若要確保文字選取範圍在特定位置,您必須在該位置明確放置文字選取範圍中的命令關閉時。
範例
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
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。