@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
14 lines (13 loc) • 499 B
TypeScript
export declare enum TreeViewCommand {
Check = "Check",
Collapse = "Collapse",
Exists = "Exists",
Expand = "Expand",
GetItemCount = "GetItemCount",
GetSelected = "GetSelected",
GetText = "GetText",
IsChecked = "IsChecked",
Select = "Select",
Uncheck = "Uncheck"
}
export declare function ControlTreeView(windowTitle: string, windowText: string, controlId: string, command: TreeViewCommand, option1?: string, option2?: string, characterCount?: number): string;