Propriedade TextSelection.IsActiveEndGreater
Obtém se o ponto ativo é igual ao ponto inferior.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
ReadOnly Property IsActiveEndGreater As Boolean
Get
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean
Valor de propriedade
Tipo: System.Boolean
Um valor booleano indicando True se final de ativo do texto selecionado estiver em um deslocamento de caracteres absoluto maior que a âncora de texto do documento, False se não.
Exemplos
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
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.