IFuncInfo::ReturnType Property

 

Gets or sets a string containing the return type for the function.

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

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

Property Value

Type: System::String^

A string containing the return type for the function.

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