IFuncInfo.HelpString Property

Gets or sets the variable or function Help string.

Namespace:  Microsoft.VisualStudio.VsWizard
Assembly:  Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)

Syntax

声明
Property HelpString As String
用法
Dim instance As IFuncInfo
Dim value As String

value = instance.HelpString

instance.HelpString = value
string HelpString { get; set; }
property String^ HelpString {
    String^ get ();
    void set (String^ value);
}
function get HelpString () : String
function set HelpString (value : String)

Property Value

Type: System.String

The variable or function Help string.

Examples

// 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;

Permissions

See Also

Reference

IFuncInfo Interface

IFuncInfo Members

Microsoft.VisualStudio.VsWizard Namespace