Help2.GetNextTopic, méthode
Donné un URL retourne l'URL suivant 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 GetNextTopic ( _
bstrURL As String _
) As String
string GetNextTopic(
string bstrURL
)
String^ GetNextTopic(
[InAttribute] String^ bstrURL
)
abstract GetNextTopic :
bstrURL:string -> string
function GetNextTopic(
bstrURL : String
) : String
Paramètres
bstrURL
Type : StringChaî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 suivant 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;
HelpGetNextURLExample(_applicationObject);
}
public void HelpGetNextURLExample(DTE2 dte)
{
// Returns and displays the URL of the topic that followins
// 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 next URL from the Visual Studio topic
// and display it.
MessageBox.Show("The next URL after the supplied one is "
+ "\n" + help2.GetNextTopic
("ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/
dv_vstoc/html/06ddebea-2c83-4a45-bb48-6264c797ed93.htm"));
}
catch (SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}
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.