is there a way to iterate over IHTMLElementCollection?
such as
var
e : IHTMLLinkElement;
elementCollection:IHTMLElementCollection;
begin
for e in elementCollection do
showmessage(e.caption);
end;
i know there is a property named _newEnum, however it is not supported in delphi as much as i could understand.
update: apperently links are IHTMLElement and not IHTMLLinkElement