TextSelection.AnchorPoint 属性
获取选定内容的起始点。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property AnchorPoint As VirtualPoint
VirtualPoint AnchorPoint { get; }
property VirtualPoint^ AnchorPoint {
VirtualPoint^ get ();
}
abstract AnchorPoint : VirtualPoint with get
function get AnchorPoint () : VirtualPoint
属性值
类型:EnvDTE.VirtualPoint
VirtualPoint 对象。
备注
虽然 TextPoint 对象指示文本选择的位置。编辑器 窗口中,它们不意味着缓冲区的位置。 虚空格(超出行尾的区域)也只在**“编辑器”**窗口中才被跟踪。 结果,那么,当您在文本缓冲区使用 EditPoint 修改文本时,发生的文本选择未定义。 例如命令可以从文本选择开始,获取编辑点,然后将缓冲区。 对文本选择在特定位置的安全保护,必须在该位置显式放置文本选择在命令中的末尾。
示例
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
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。