↑  ←  Описание функции


_IEGetObjByName

Returns an object variable by name or id.

#include <IE.au3>
_IEGetObjByName(ByRef $o_object, $s_Id [, $i_index = 0])

Параметры

$o_object Переменная объекта InternetExplorer.Application, объекта Окна или Фрейма (области)
$s_Id Specifies name or id of the object you wish to match
$i_index [необязательный] If name of id occurs more than once, specifies instance by 0-based index
0 - (по умолчанию) or positive integer returns an indexed instance
-1 - returns a collection of the specified objects

Возвращаемое значение

Успех:Возвращает an object variable pointing to the specified Object, @extended = specified object count
Ошибка:Возвращает 0 и устанавливает @error
@error:0 ($_IEStatus_Success) = Нет ошибок
3 ($_IEStatus_InvalidDataType) = Неверный тип данных
7 ($_IEStatus_NoMatch) = Нет совпадений
@extended:Содержит номер неверного параметра

Примечания

This function will return an object reference to any object in the document with a specified name or id. DOM elements can have Name or ID attributes or both. A specific ID can be assigned to only a single element while a specific Name can be assigned to multiple elements. In Internet Explorer, the Name and ID namespaces are shared.

См. также

_IEGetObjById

Пример

; *******************************************************
; Пример 1 - Open a browser to the form example, get an object reference
;               to the element with the name "ExampleForm".  In this case the
;               result is identical to using $oForm = _IEFormGetObjByName($oIE, "ExampleForm")
; *******************************************************

#include <IE.au3>
$oIE = _IE_Example ("form")
$oForm = _IEGetObjByName ($oIE, "ExampleForm")