I want to create a canvas element that I can add to an html document. The Dart recommendations seem to be to use dart:html rather then dart:dom, but as far as I can see, dart:html only contains an interface definition for a CanvasElement interface, not a class.

How do I instantiate a canvas object?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Eventually you'll be able to just do:

new CanvasElement();

The new HTML lib hasn't been fully populated with constructors yet, though. It's a work-in-progress. In the meantime, the easiest way is probably:

new Element.html('<canvas></canvas>');

That will return an instance of CanvasElement.

link|improve this answer
Also possible is new Element.tag('canvas') – Seth Ladd Jan 6 at 5:10
feedback

In Dart, you can create objects directly from an interface (http://www.dartlang.org/docs/getting-started/interface.html) so there is nothing wrong to create canvas using new CanvasElement().

link|improve this answer
As munificent mentioned, this is not true in many places at this stage. new CanvasElement() doesn't work right now. – Curyous Dec 10 '11 at 22:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.