IFuncInfo.ParamText Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the text for a function's parameters.
public:
property System::String ^ ParamText { System::String ^ get(); void set(System::String ^ value); };
public:
property Platform::String ^ ParamText { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(1610743826)]
public string ParamText { [System.Runtime.InteropServices.DispId(1610743826)] get; [System.Runtime.InteropServices.DispId(1610743826)] [System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)] set; }
[<System.Runtime.InteropServices.DispId(1610743826)>]
[<get: System.Runtime.InteropServices.DispId(1610743826)>]
[<set: System.Runtime.InteropServices.DispId(1610743826)>]
[<set: System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)>]
member this.ParamText : string with get, set
Public Property ParamText As String
Property Value
The text for a function's parameters.
- Attributes
Examples
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strParamTxt = oFunction.ParamText;