IFuncInfo::callconv Property

 

Gets or sets the function's calling convention.

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

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

Property Value

Type: System::String^

The function's calling convention.

See Calling Conventions for more information.

var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
var strcallconv = oFunction.callconv;
Return to top
Show: