IFuncInfo::ParamText Property

 

Gets or sets the text for a function's parameters.

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

property String^ ParamText {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The text for a function's parameters.

var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strParamTxt = oFunction.ParamText;
Return to top
Show: