Aracılığıyla paylaş


TextSelection.IsActiveEndGreater Özellik

Etkin noktayı Alt noktaya eşit olup olmadığını alır.

Ad alanı:  EnvDTE
Derleme:  EnvDTE (EnvDTE.dll içinde)

Sözdizimi

'Bildirim
ReadOnly Property IsActiveEndGreater As Boolean
    Get
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
    bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean

Özellik Değeri

Tür: System.Boolean
Belirten bir Boole değeri True Seçili metnin etkin bitiş çapa metin belgede, daha büyük bir mutlak karakter uzaklığındaki ise False IF not.

Örnekler

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 Güvenliği

Ayrıca bkz.

Başvuru

TextSelection Arabirim

EnvDTE Ad Alanı