delphi - iterate over IHTMLElementCollection -


is there way iterate on ihtmlelementcollection?

such

var   e : ihtmllinkelement; elementcollection:ihtmlelementcollection; begin     e in elementcollection       showmessage(e.caption); end; 

i know there property named _newenum, not supported in delphi as understand.

update: apperently links ihtmlelement , not ihtmllinkelement

for := 0 pred(elementcollection.length) begin   e := elementcollection.item(i, emptyparam) ihtmlelement;   //... end; 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -