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

CreateAttribute() protected method

protected CreateAttribute ( string name, string text, string prefix ) : void
name string
text string
prefix string
return void
		protected  virtual void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.Document.CreateAttribute(name, prefix);
			xa.Value		= text;
			this.ParentNode .Attributes.Append(xa);
		}