共用方式為


IFuncInfo.HelpString 屬性

取得或設定的變數或函式的說明字串。

命名空間:  Microsoft.VisualStudio.VsWizard
組件:  Microsoft.VisualStudio.VsWizard (在 Microsoft.VisualStudio.VsWizard.dll 中)

語法

'宣告
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)

屬性值

型別:System.String
變數或函式的說明字串。

範例

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

.NET Framework 安全性

請參閱

參考

IFuncInfo 介面

Microsoft.VisualStudio.VsWizard 命名空間