指定されたウィンドウがフレームセットを持っているかどうかを調べます。
#include <IE.au3>
_IEIsFrameSet ( ByRef $o_object )
パラメータ
$o_object | InternetExplorer.Applicationのオブジェクト変数、ウィンドウまたはフレームオブジェクト |
返し値
成功: | オブジェクトがフレームセットページを参照している場合、1を返します |
失敗: | 0を返し@ERRORを設定します |
@Error: | 0 ($_IEStatus_Success) = 正常終了 |
3 ($_IEStatus_InvalidDataType) = 無効なデータ型 | |
@Extended: | 無効なパラメータの番号が格納されています |
注意
_IEFrameGetCollectionは参照しているフレームがフレームセットの一部なのか、それともアイフレームなのかを特定しません。ページにフレームが存在し、関数がFalseを返す場合、そのフレームはアイフレームです
関連
_IEFrameGetCollection
例
; *******************************************************
; 例 1 - フレームセットのサンプルを開き表示し、フレームコレクションを取得。
; フレーム数を調べ、存在するフレームまたはアイフレームの数を表示
; *******************************************************
;
#include <IE.au3>
$oIE = _IE_Example ("frameset")
$oFrames = _IEFrameGetCollection ($oIE)
$iNumFrames = @extended
If $iNumFrames > 0 Then
If _IEIsFrameSet ($oIE) Then
MsgBox(0, "Frame Info", "Page contains " & $iNumFrames & " frames in a FrameSet")
Else
MsgBox(0, "Frame Info", "Page contains " & $iNumFrames & " iFrames")
EndIf
Else
MsgBox(0, "Frame Info", "Page contains no frames")
EndIf