_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Пример
; *******************************************************
; Пример 1 - Display the frameset example, get frame collection,
; check number of frames, display number of frames or iFrames present
; *******************************************************
#include <IE.au3>
$oIE = _IE_Example ("frameset")
$oFrames = _IEFrameGetCollection ($oIE)
$iNumFrames = @extended
If $iNumFrames > 0 Then
If _IEIsFrameSet ($oIE) Then
MsgBox(4096, "Frame Info", "Page contains " & $iNumFrames & " frames in a FrameSet")
Else
MsgBox(4096, "Frame Info", "Page contains " & $iNumFrames & " iFrames")
EndIf
Else
MsgBox(4096, "Frame Info", "Page contains no frames")
EndIf