IncrementalSearch.IncrementalSearchModeOn, propriété
Obtient une valeur indiquant si une recherche ISearch est effectuée.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
ReadOnly Property IncrementalSearchModeOn As Boolean
bool IncrementalSearchModeOn { get; }
property bool IncrementalSearchModeOn {
bool get ();
}
abstract IncrementalSearchModeOn : bool with get
function get IncrementalSearchModeOn () : boolean
Valeur de propriété
Type : Boolean
true si une recherche ISearch a été lancée sans avoir été fermée ; sinon, false.
Exemples
Sub testIS()
' Set variables for text pane.
Dim tp As EnvDTE80.TextPane2
tp = CType(DTE.ActiveDocument.ActiveWindow.Object.ActivePane, _
TextPane2)
' Start an incremental search forward from
' the current insertion point in the document.
tp.IncrementalSearch.StartForward()
' Add the character "a" to the search pattern.
tp.IncrementalSearch.AppendCharAndSearch(Asc("a"))
' Display the status of the search mode.
'MsgBox("ISearch status: " & _
tp.IncrementalSearch.IncrementalSearchModeOn.ToString)
' Perform incremental search using the pattern ("a").
tp.IncrementalSearch.SearchWithLastPattern()
' After the search, exit incremental search mode.
tp.IncrementalSearch.Exit()
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.