@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
17 lines (16 loc) • 644 B
TypeScript
export declare enum ListViewCommand {
DeSelect = "DeSelect",
FindItem = "FindItem",
GetItemCount = "GetItemCount",
GetSelected = "GetSelected",
GetSelectedCount = "GetSelectedCount",
GetSubItemCount = "GetSubItemCount",
GetText = "GetText",
IsSelected = "IsSelected",
Select = "Select",
SelectAll = "SelectAll",
SelectClear = "SelectClear",
SelectInvert = "SelectInvert",
ViewChange = "ViewChange"
}
export declare function ControlListView(windowTitle: string, windowText: string, controlId: string, command: ListViewCommand, option1?: string, option2?: string, characters?: number): string;