AODL.Document.Content.EmbedObjects.EmbedObject.NewXmlNode C# (CSharp) Method

NewXmlNode() private method

private NewXmlNode ( ) : void
return void
		private void NewXmlNode()
		{
			this.ParentNode 		= this.Document.CreateNode("object", "draw");       

			XmlAttribute xa = this.Document.CreateAttribute("href", "xlink");

			xa				= this.Document.CreateAttribute("type", "xlink");
			xa.Value		= "simple"; 

			this.ParentNode.Attributes.Append(xa);

			xa				= this.Document.CreateAttribute("show", "xlink");
			xa.Value		= "embed"; 

			this.ParentNode.Attributes.Append(xa);

			xa				= this.Document.CreateAttribute("actuate", "xlink");
			xa.Value		= "onLoad"; 

			this.ParentNode.Attributes.Append(xa);
		}