Function Reference

_IEFormElementGetCollection

与えられたフォーム内の全フォーム要素を持つコレクションオブジェクト変数を返します。

#include <IE.au3>
_IEFormElementGetCollection ( ByRef $o_object [, $i_index = -1] )

 

パラメータ

$o_object InternetExplorer.Applicationのオブジェクト変数、フォームオブジェクト
$i_index [オプション]コレクションを返すか、インデックスのインスタンスを返すかを指定します。
0 または正の整数の場合、そのインデックスのインスタンスを返します
-1 = (デフォルト) コレクションを返します

 

返し値

成功: フォーム要素コレクションを格納したオブジェクト変数を返します。@EXTENDED = フォームの要素数
失敗: 0を返し@ERRORを設定します
@Error: 0 ($_IEStatus_Success) = 正常終了
3 ($_IEStatus_InvalidDataType) = 無効なデータ型
4 ($_IEStatus_InvalidObjectType) = 無効なオブジェクト型
5 ($_IEStatus_InvalidValue) = 無効な値
7 ($_IEStatus_NoMatch) = 一致するものがありません
@Extended: 無効なパラメータの番号が格納されています

 

注意

なし。

 

関連

_IEFormElementGetObjByName, _IEFormElementGetValue, _IEFormElementSetValue, _IEFormSubmit

 


; *******************************************************
; 例 1 - 0始まりのインデックスで特定のフォーム要素への参照を取得。
;               このケースでは、Google検索エンジンへクエリをサブミット
; *******************************************************
;
#include <IE.au3>
$oIE = _IECreate ("http://www.google.com")
$oForm = _IEFormGetCollection ($oIE, 0)
$oQuery = _IEFormElementGetCollection ($oForm, 2)
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
_IEFormSubmit ($oForm)