IFuncInfo.ReturnType Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает или задает строку, содержащую тип возврата для функции.
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(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)] set; }
[<System.Runtime.InteropServices.DispId(1610743824)>]
[<get: System.Runtime.InteropServices.DispId(1610743824)>]
[<set: System.Runtime.InteropServices.DispId(1610743824)>]
[<set: System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)>]
member this.ReturnType : string with get, set
Public Property ReturnType As String
Значение свойства
Строка, содержащая тип возврата для функции.
- Атрибуты
Примеры
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strReturnType = oFunction.ReturnType;