Display introductory information about IE.au3 in a new browser window
#include <IE.au3>
_IE_Introduction ( [$s_module = "basic"] )
Parameters
$s_module | Optional: specifies which module to run basic = (Default) basic introduction |
Return Value
Success: | Returns an object variable pointing to an InternetExplorer.Application object |
Failure: | Returns 0 and sets @ERROR |
@Error: | 0 ($_IEStatus_Success) = No Error |
5 ($_IEStatus_InvalidValue) = Invalid Value | |
@Extended: | Contains invalid parameter number |
Remarks
The AutoIt Helpfile does not currently allow UDFs to have general documentation that covers a series of functions, but rather UDF documentation is focused on individual functions. This function is intended to provide that general documentation. It will grow over time.
Related
_IE_Example
Example
; *******************************************************
; Example 1 - Open a browser with the basic IE.au3 introductory text displayed
; *******************************************************
;
#include <IE.au3>
$oIE = _IE_Introduction ("basic")