Partager via


TextDocument.ClearBookmarks, méthode

Supprime tous les signets sans nom dans le document texte.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
Sub ClearBookmarks
void ClearBookmarks()
void ClearBookmarks()
abstract ClearBookmarks : unit -> unit
function ClearBookmarks()

Notes

Les exemples suivants recherchent le mot "int" dans un document (par exemple, un fichier texte). S'ils le trouvent, un signet est placé sur sa ligne. Les exemples utilisent ensuite la méthode ClearBookmarks pour supprimer les signets.

Pour exécuter l'exemple suivant, commencez par créer ou ouvrir un document contenant le mot "int".

Exemples

Sub ClearBookmarksExample(ByVal dte As EnvDTE.DTE)
    Dim objTD As TextDocument

    objTD = dte.ActiveDocument.Object
    MsgBox("Selection: " & objTD.Selection.Mode.ToString)
    If Not objTD.MarkText("int") Then
        MsgBox("""int"" not found.")
    Else
        MsgBox("Note that unnamed bookmarks have been placed on lines _
        containing ""int"".")
        objTD.ClearBookmarks()
    End If
End Sub
public void ClearBookmarksExample(_DTE dte)
{
    TextDocument td;

    td = (TextDocument)dte.ActiveDocument.Object("");
    MessageBox.Show ("Selection: " + td.Selection.Mode.ToString ());
    if (td.MarkText ("int", (int)vsFindOptions.vsFindOptionsNone) == 
    false)
        MessageBox.Show ("\"int\" not found.");
    else
    {
        MessageBox.Show ("Note that unnamed bookmarks have been placed 
        on lines containing \"int\".");
        td.ClearBookmarks ();
    }
}

Sécurité .NET Framework

Voir aussi

Référence

TextDocument Interface

EnvDTE, espace de noms