public static void AttachToDocument(this PNode c1, PHTMLDocument doc)
		{
			doc.get_body(
				body =>
				{
					c1.AttachTo(body);
				}
			);
		}
Exemplo n.º 2
0
 public static IHTMLElement AttachToDocument(this  XElement e)
 {
     return e.AttachTo(Native.Document.body);
 }