_IEFrameGetObjByName
Returns an object reference to a Frame or iFrame by name.
#include <IE.au3>
_IEFrameGetObjByName(ByRef $o_object, $s_name)
Параметры
$o_object | Переменная объекта InternetExplorer.Application, объекта Окна или Фрейма (области) |
$s_name |
Name of the Frame you wish to match |
Возвращаемое значение
Успех: | Возвращает an object variable pointing to the Window object in a Frame, @extended = Frame count |
Ошибка: | Возвращает 0 и устанавливает @error |
@error: | 0 ($_IEStatus_Success) = Нет ошибок |
3 ($_IEStatus_InvalidDataType) = Неверный тип данных | |
4 ($_IEStatus_InvalidObjectType) = Неверный тип объекта | |
7 ($_IEStatus_NoMatch) = Нет совпадений | |
@extended: | Содержит номер неверного параметра |
Примечания
The object returned by this function is a window object which allows access to the document contained within. You may also want to access the frame or iframe tag and its properties - to do this, use _IETagNameGetCollection.См. также
_IEFrameGetCollectionПример
; *******************************************************
; Пример 1 - Open iFrame example, get a reference to the iFrame
; with a name of "iFrameTwo" and replace its body HTML
; *******************************************************
#include <IE.au3>
$oIE = _IE_Example ("iframe")
$oFrame = _IEFrameGetObjByName ($oIE, "iFrameTwo")
_IEBodyWriteHTML ($oFrame, "Hello <b>iFrame!</b>")
_IELoadWait ($oFrame)