TextSelection.IsActiveEndGreater 屬性
取得作用點是否等於下緣點。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property IsActiveEndGreater As Boolean
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
bool get ();
}
abstract IsActiveEndGreater : bool with get
function get IsActiveEndGreater () : boolean
屬性值
類型:Boolean
表示為 True ,如果文字選取範圍的作用端點會在 Word 文件中的錨點所在的絕對字元位移,布林值便為 False 。
範例
Sub IsActiveEndGreaterExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Go to first line in document.
objSel.GotoLine(1, False)
MsgBox("Is the active point at the bottom of the document? " & objSel.IsActiveEndGreater)
objSel.EndOfDocument(True)
MsgBox("Is the active point at the bottom of the document? " & objSel.IsActiveEndGreater)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。