TextSelection.IsActiveEndGreater الخاصية
يتم الإشارة النشط هو تساوي اليؤشر السفلي.
مساحة الاسم: EnvDTE
التجميع: EnvDTE (في EnvDTE.dll)
بناء الجملة
'إقرار
ReadOnly Property IsActiveEndGreater As Boolean
Get
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean
قيمة الخاصية
النوع: System.Boolean
القيمة منطقية تشير إلى Trueإذا نشط على نص محدد النهائي هو عند إزاحة حرف مطلقة أكبر من نقطة ارتساء في مستند نصي، 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.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.