AODL.Document.Styles.Properties.ChartProperties.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 void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.Style.Document.CreateAttribute(name, prefix);
			xa.Value		= text;
			this.Node.Attributes.Append(xa);
		}