Exemplo n.º 1
0
		public void get_body(PHTMLElementAction e)
		{
			PIHTMLElement i = this.InternalDocument.body;

			e(i);
		}
Exemplo n.º 2
0
		public void get_documentElement(PHTMLElementAction e)
		{
			PIHTMLElement i = this.InternalDocument.documentElement;

			e(i);
		}
Exemplo n.º 3
0
		public void createElement(string tagName, PHTMLElementAction y)
		{
			PIHTMLElement i = InternalDocument.createElement(tagName);

			y(i);
		}
Exemplo n.º 4
0
        public void get_body(PHTMLElementAction e)
        {
            PIHTMLElement i = this.InternalDocument.body;

            e(i);
        }
Exemplo n.º 5
0
        public void get_documentElement(PHTMLElementAction e)
        {
            PIHTMLElement i = this.InternalDocument.documentElement;

            e(i);
        }
Exemplo n.º 6
0
        public void createElement(string tagName, PHTMLElementAction y)
        {
            PIHTMLElement i = InternalDocument.createElement(tagName);

            y(i);
        }