TextSelection.ActivePoint 屬性
取得目前選取範圍的結束點。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property ActivePoint As VirtualPoint
Get
VirtualPoint ActivePoint { get; }
property VirtualPoint^ ActivePoint {
VirtualPoint^ get ();
}
abstract ActivePoint : VirtualPoint
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。