System.getArgument

Function/Meaning

Get command line options

Type
Systemclassmethod of
Syntax
getArgument(name)
Arguments
name

Specify the command line option name to get.
Add a'-'(hyphen) first (eg'-nosplash').

Return value

If a command line option is specified, its value is returned, otherwise void is returned.

Explanation

Command line options must be passed to Kirikiri in the form -name = value or -name.
In the former case, value is returned as the value, and in the former case,'yes' is returned as the value.

Reference
System.setArgument