Partager via


Help2.GetPrevTopic, méthode

Donné un URL retourne l'URL précédent dans la table des matières.

Espace de noms :  Microsoft.VisualStudio.VSHelp80
Assembly :  Microsoft.VisualStudio.VSHelp80 (dans Microsoft.VisualStudio.VSHelp80.dll)

Syntaxe

'Déclaration
Function GetPrevTopic ( _
    bstrURL As String _
) As String
string GetPrevTopic(
    string bstrURL
)
String^ GetPrevTopic(
    [InAttribute] String^ bstrURL
)
abstract GetPrevTopic : 
        bstrURL:string -> string
function GetPrevTopic(
    bstrURL : String
) : String

Paramètres

  • bstrURL
    Type : String

    Chaîne contenant l'URL du sujet actuel qui est compatible avec Internet Explorer.

Valeur de retour

Type : String
Retourne une chaîne contenant l'URL du sujet précédent dans la table des matières.

Exemples

Créez une macro complémentaire de Visual Studio à l'aide de Visual C# comme décrit dans Comment : créer un complément. Ajoutez les références à Microsoft.VisualStudio.VSHelp, à Microsoft.VisualStudio.VSHelp80, et à System.Windows.Forms. Remplacez code dans la méthode d'OnConnection dans le fichier Connect.cs par code suivant. Exécutez l'exemple de code comme décrit dans Comment : compiler et exécuter les exemples de code du modèle objet Automation.

using System;
using Extensibility;
using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.VSHelp;
using Microsoft.VisualStudio.VSHelp80;
using System.Windows.Forms;

public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    HelpGetPrevURLExample(_applicationObject);
}

public void HelpGetPrevURLExample(DTE2 dte)
{
    // Returns and displays the URL of the topic that precedes
    // the topic specified
    // by the URL in the table of contents.
    try
    {
        Microsoft.VisualStudio.VSHelp80.Help2 help2 =
(Microsoft.VisualStudio.VSHelp80.Help2)_applicationObject.GetObject 
("Help2");

        // Get the URL of the topic that precedes 
        // Introducing Visual Studio 
        // and display it.
        MessageBox.Show("The previous URL before the supplied one is " 
+ "\n" + help2.GetPrevTopic
("ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en
/dv_vstoc/html/99997089-56ff-4d60-81a9-447062dc98ac.htm"));

    }
    catch (SystemException ex)
    {
        MessageBox.Show("ERROR: " + ex);
    }
}

Sécurité .NET Framework

Voir aussi

Référence

Help2 Interface

Microsoft.VisualStudio.VSHelp80, espace de noms