Skip to content

Functions Overview

unknown6656 edited this page Aug 13, 2020 · 1 revision

Overview of non-standard APIs and Functions.

⮨ 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.

Base Framework Extensions

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.

Threading API

.NET Interop API

Internals (UNSAFE!)

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.