The Args object is passed to a script when it is invoked via a command, via the Func.args property. It is used when a command added by a script has a command line template and provides access to any arguments provided on the command line.
Property Name | Return Type | Description |
---|---|---|
<argument name> |
variant |
The Args object will have one property corresponding to each of the arguments in the command line template. For example, if the command line template is NAME/K,SIZE/N, the Args object would have two properties, called name and size. The type returned by each property is also defined by the template. In the above example, name would return a string and size an int. If an argument was not provided on the command line by the user, its property will either return bool (for a /S or /O argument), or an empty variant otherwise. |
got_arg |
object |
The got_arg property returns an object with a bool child property for each argument in the template. It lets you test if a particular argument was provided on the command line, before you actually query for the value of the argument. For example, If Args.got_arg.size Then… |