
14.10.2011, 08:47
|
 |
Let Me Show You
|
|
Регистрация: 30.04.2010
Адрес: Северодвинск
Сообщения: 5,426
Версия Delphi: 7, XE5
Репутация: 59586
|
|
Цитата:
item Method
Retrieves a form object or an object from an elements collection.
Syntax
oItem = object.item(lIndex [, iSubindex])
Parameters
lIndex Required. Integer or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.
iSubindex Optional. Integer that specifies the zero-based index of the object to retrieve when a collection is returned.
Return Value
Returns an object or a collection of objects if successful, or null otherwise.
|
http://msdn.microsoft.com/en-us/libr...(v=VS.85).aspx
elem:=all.item('text', 0) as IHTMLElement;
__________________
Пишу программы за еду.
__________________
|