IFuncInfo.HelpString, propriété
Obtient ou définit la variable ou la fonction chaîne d'aide.
Espace de noms : Microsoft.VisualStudio.VsWizard
Assembly : Microsoft.VisualStudio.VsWizard (dans Microsoft.VisualStudio.VsWizard.dll)
Syntaxe
'Déclaration
Property HelpString As String
string HelpString { get; set; }
property String^ HelpString {
String^ get ();
void set (String^ value);
}
abstract HelpString : string with get, set
function get HelpString () : String
function set HelpString (value : String)
Valeur de propriété
Type : System.String
La chaîne d'aide de variable ou de fonction.
Exemples
// This example gets the help string for the function,
// oFunction, and assigns it to the string, strHelpString.
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strHelpString = oFunction.HelpString;
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, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.