_IEIsFrameSet
Checks to see if the specified Window contains a FrameSet.
#include <IE.au3>
_IEIsFrameSet(ByRef $o_object)
Параметры
$o_object | Переменная объекта InternetExplorer.Application, объекта Окна или Фрейма (области) |
Возвращаемое значение
Успех: | Возвращает 1 if the object references a FrameSet page |
Ошибка: | Возвращает 0 и устанавливает @error |
@error: | 0 ($_IEStatus_Success) = Нет ошибок |
3 ($_IEStatus_InvalidDataType) = Неверный тип данных | |
@extended: | Содержит номер неверного параметра |
Примечания
_IEFrameGetCollection() does not specify whether the referenced frames are part of a FrameSet or whether they are iFrames. If frames exist on a page and this function return False, then the frames are iFrames.См. также
_IEFrameGetCollectionПример
#include <IE.au3>
; Пример 1 - Открывает пример страницы "frameset", получает коллекцию фреймов,
; проверяет количество фреймов, отображает количество фреймов или тех же iFrames
$oIE = _IE_Example("frameset")
$oFrames = _IEFrameGetCollection($oIE)
$iNumFrames = @extended
If $iNumFrames > 0 Then
If _IEIsFrameSet($oIE) Then
MsgBox(4096, "Информация о фрейме", "Страница содержит " & $iNumFrames & " фреймов в FrameSet")
Else
MsgBox(4096, "Информация о фрейме", "Страница содержит " & $iNumFrames & " iFrames")
EndIf
Else
MsgBox(4096, "Информация о фрейме", "Страница не содержит фреймы")
EndIf