IFuncInfo.ReturnType Property

Definition

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

public:
 property System::String ^ ReturnType { System::String ^ get(); void set(System::String ^ value); };
public:
 property Platform::String ^ ReturnType { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(1610743824)]
public string ReturnType { [System.Runtime.InteropServices.DispId(1610743824)] get; [System.Runtime.InteropServices.DispId(1610743824)] [System.Runtime.InteropServices.TypeLibFunc] set; }
[<System.Runtime.InteropServices.DispId(1610743824)>]
[<get: System.Runtime.InteropServices.DispId(1610743824)>]
[<set: System.Runtime.InteropServices.DispId(1610743824)>]
[<set: System.Runtime.InteropServices.TypeLibFunc>]
member this.ReturnType : string with get, set
Public Property ReturnType As String

Property Value

A string containing the return type for the function.

Attributes

Examples

var oInterface = window.external.ParentObject;  
var oFunction = oInterface.Functions(PROPERTY_NAME.value);  
Var strReturnType = oFunction.ReturnType;  

Applies to