_IEImgGetCollection
Возвращает переменную объекта коллекции представляющую теги IMG в документе, или единственное изображение по индексу.
#include <IE.au3>
_IEImgGetCollection(ByRef $o_object [, $i_index = -1])
Параметры
$o_object | Переменная объекта InternetExplorer.Application, Window, Frame or iFrame object |
$i_index |
[необязательный] Указывает, что возвращать, коллекцию или экземпляр по индексу 0 или положительное целое число является индексом возвращаемого экземпляра -1 = (по умолчанию) Возвращает коллекцию |
Возвращаемое значение
Успех: | Возвращает переменную объекта с коллекцией всех тегов IMG в документе, @extended = img count |
Ошибка: | Возвращает 0 и устанавливает @error |
@error: | 0 ($_IEStatus_Success) = Нет ошибок |
3 ($_IEStatus_InvalidDataType) = Неверный тип данных | |
5 ($_IEStatus_InvalidValue) = Неверное значение | |
7 ($_IEStatus_NoMatch) = Нет совпадений | |
@extended: | Содержит номер неверного параметра |
См. также
_IEFormImageClick, _IEImgClickПример
; *******************************************************
; Пример 1 - Create browser at AutoIt homepage, get a reference to
; the 6th Image on the page (note: the first image is index 0)
; and display information about it
; *******************************************************
#include <IE.au3>
$oIE = _IECreate ("http://www.autoitscript.com/")
$oImg = _IEImgGetCollection ($oIE, 5)
$sInfo = "Src: " & $oImg.src & @CR
$sInfo &= "FileName: " & $oImg.nameProp & @CR
$sInfo &= "Height: " & $oImg.height & @CR
$sInfo &= "Width: " & $oImg.width & @CR
$sInfo &= "Border: " & $oImg.border
MsgBox(4096, "4th Image Info", $sInfo)
; *******************************************************
; Пример 2 - Create browser at AutoIt homepage, get Img collection
; and display src URL for each
; *******************************************************
#include <IE.au3>
$oIE = _IECreate ("http://www.autoitscript.com/")
$oImgs = _IEImgGetCollection ($oIE)
$iNumImg = @extended
MsgBox(4096, "Img Info", "There are " & $iNumImg & " images on the page")
For $oImg In $oImgs
MsgBox(4096, "Img Info", "src=" & $oImg.src)
Next