-
-
Notifications
You must be signed in to change notification settings - Fork 10
Functions Overview
unknown6656 edited this page Aug 13, 2020
·
1 revision
⮨ Back to Home | ⮜ Extended Features
This article contains a List of all functions and APIs shipped with the AutoIt Interpreter, which are not part of the official AutoIt standard.
Function name | Description |
---|---|
ATan2( <x>, <y> ) |
|
ACosh( <x> ) |
|
ASinh( <x> ) |
|
ATanh( <x> ) |
|
ConsoleClear() |
Clears the console and resets the cursor to a top-most, left-most position. |
ConsoleWriteLine( [value] ) |
Writes the given optional value to the console followed by a line break. |
ConsoleReadLine() |
Reads a text line from the console input stream. |
KernelPanic() |
Creates a kernel panic on the 7host's system. |
This following contains all functions which are designed for internal-usage only. Their API might change without notice and their usage can have unpredictable results.
Function Name | Description |
---|---|
__iterator_create( <name>, <source> ) |
Creates a new Iterator with the given name which iterates over the given source collection/object. |
__iterator_destroy( <iterator> ) |
Destroys the given iterator . |
__iterator_canmove( <iterator> ) |
Returns whether the iterator has any remaining elements left. |
__iterator_movenext( <iterator> ) |
Moves the given iterator to the next key-value-pair. |
__iterator_currentkey( <iterator> ) |
Returns the current key associated with the giveniterator . |
__iterator_currentvalue( <iterator> ) |
Returns the current value associated with the giveniterator . |
Wiki Home | Repository Home | Releases | License | Issues | Pull Requests | Projects
| | Facebook | YouTube | unknown6656.com