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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。