This example assumes that TestFile is a file that has several lines of data written to it using the Write function, each line containing a string in quotations and a number separated by a comma, for example: ("Hello", 234). VB Copy FileOpen(1, "TESTFILE", OpenMode.Output) Write(1...
error messages can convey more information.argument [1] to myFunction must be a functionexplains much more thanundefined is not a function. If you forgot to pass a function as a second argument to another function, it is easier to just be told that you missed it, instead of debugging the...
dataType - the dataType value to set. Returns: the FunctionInput object itself.withIsConfigurationParameter public FunctionInput withIsConfigurationParameter(Boolean isConfigurationParameter) Set the isConfigurationParameter property: A flag indicating if the parameter is a configuration parameter. True if...
public FunctionInput withDataType(String dataType) Set the dataType value. Parameters: dataType - the dataType value to set Returns: the FunctionInput object itself.withIsConfigurationParameter public FunctionInput withIsConfigurationParameter(Boolean isConfigurationParameter) Set the isConfigurationParamete...
If the user clicksOKor pressesENTER, theInputBoxfunction returns whatever is in the text box. If the user clicksCancel, the function returns a zero-length string (""). The following example uses theInputBoxfunction to display an input box and assign the string to the variable Input: ...
GetAppContainerNamedObjectPath function (enable accessing object outside app containers using ACL) Creating a DACL Install CopyPIMETextService.dllto C:\Program Files (X86)\PIME\x86. CopyPIMETextService.dllto C:\Program Files (X86)\PIME\x64. ...
The following diagram shows how JSON information moves through a JSONPath task state. The InputPath selects the parts of the JSON input to pass to the task of the Task state (for example, an AWS Lambda function). You can adjust the data that is sent to your action in the Parameters fie...
Some host applications, for example, Microsoft Excel, also automatically add a Help button to the dialog box. If the user chooses OK or presses ENTER, the InputBox function returns whatever is in the text box. If the user chooses Cancel, the function returns a zero-length string ("")....
To see more about these axes, open theInput Managerwindow, and click the arrow next to any axis name to expand its properties. Each input axis has the following properties: PropertyFunction NameAxis name. You can use this to access the axis from scripts. ...
Request a simple text response that requires no evaluation. prompt ="Do you want more? Y/N [Y]: "; txt = input(prompt,"s");ifisempty(txt) txt ='Y';end Theinputfunction returns the text exactly as typed. If the input is empty, this code assigns a default value,'Y', totxt. ...