How can I get a DOM link to a canvas handle. I use Delphi, IE11 and the corresponding library like MSMHTML, I suspected it line by line
canvasHandle := (HTMLDoc3.getElementById('canvas') as IHTMLCanvasElement);
Html:
<canvas id="canvas">
....
</canvas>
however, this raises an exception "Interface not supported"
source
share