AODL.Document.Forms.Controls.ODFTextArea.CreateBasicNode C# (CSharp) Method

CreateBasicNode() protected method

protected CreateBasicNode ( ) : void
return void
		protected override void CreateBasicNode()
		{
			XmlNode xe = this._document.CreateNode("textarea", "form");
			Node.AppendChild(xe);
			Node = xe;
			this.ControlImplementation = "ooo:com.sun.star.form.component.TextField";
		}
	}