Returns an array of information about the IE.au3 version
#include <IE.au3>
_IE_VersionInfo ( )
Parameters
None.
Return Value
Success: | Returns an array ($IEAU3VersionInfo) |
$IEAU3VersionInfo[0] = Release Type (T=Test or V=Production) | |
$IEAU3VersionInfo[1] = Major Version | |
$IEAU3VersionInfo[2] = Minor Version | |
$IEAU3VersionInfo[3] = Sub Version | |
$IEAU3VersionInfo[4] = Release Date (YYYYMMDD) | |
$IEAU3VersionInfo[5] = Display Version (e.g. V2.0-0) | |
Failure: | None |
Remarks
None.
Related
None.
Example
; *******************************************************
; Example 1 - Retrieve and display IE.au3 version information
; *******************************************************
;
#include <IE.au3>
$aVersion = _IE_VersionInfo ()
MsgBox(0, "IE.au3 Version", $aVersion[5] & " released " & $aVersion[4])