IFuncInfo.ReturnType Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define uma cadeia de caracteres que contém o tipo de retorno da função.
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
Valor da propriedade
Uma cadeia de caracteres que contém o tipo de retorno para a função.
- Atributos
Exemplos
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strReturnType = oFunction.ReturnType;