Changes the operation of various AutoIt functions/parameters. This function can be used interchangeably with Opt.
Opt
The option to change. See AutoItOption for details.
AutoItOption
The value to assign to the option. It varies depending on the option being set.
A promise that resolves to the previous setting of the option.
import { AutoItSetOption, AutoItOption } from '@ahmic/autoit-js';await AutoItSetOption(AutoItOption.AutoItWinTitleMatchMode, 2); Copy
import { AutoItSetOption, AutoItOption } from '@ahmic/autoit-js';await AutoItSetOption(AutoItOption.AutoItWinTitleMatchMode, 2);
https://www.autoitscript.com/autoit3/docs/functions/AutoItSetOption.htm
Changes the operation of various AutoIt functions/parameters. This function can be used interchangeably with
Opt
.