_IEFormElementGetValue
Returns the value of a given Form Element.
#include <IE.au3>
_IEFormElementGetValue(ByRef $o_object)
Параметры
$o_object | Переменная объекта InternetExplorer.Application, Form Element object |
Возвращаемое значение
Успех: | Возвращает the string value of the given Form Element |
Ошибка: | Возвращает 0 и устанавливает @error |
@error: | 0 ($_IEStatus_Success) = Нет ошибок |
3 ($_IEStatus_InvalidDataType) = Неверный тип данных | |
4 ($_IEStatus_InvalidObjectType) = Неверный тип объекта | |
@extended: | Содержит номер неверного параметра |
Примечания
See remarks for _IEFormElementSetValue.См. также
_IEFormElementSetValue, _IEFormElementGetCollection, _IEFormElementGetObjByName, _IEFormElementOptionSelect, _IEFormElementCheckboxSelect, _IEFormElementRadioSelectПример
; *******************************************************
; Пример 1 - Open a browser with the form example, set the value of a text
; form element, retrieve and display the value from the element
; *******************************************************
#include <IE.au3>
$oIE = _IE_Example ("form")
$oForm = _IEFormGetObjByName ($oIE, "ExampleForm")
$oText = _IEFormElementGetObjByName ($oForm, "textExample")
$IEAu3Version = _IE_VersionInfo ()
_IEFormElementSetValue ($oText, $IEAu3Version[5])
MsgBox(4096, "Form Element Value", _IEFormElementGetValue ($oText))