AODL.Document.Content.Charts.Chart.CreateAttribute C# (CSharp) Метод

CreateAttribute() приватный Метод

Create a XmlAttribute for propertie XmlNode.
private CreateAttribute ( string name, string text, string prefix ) : void
name string The attribute name
text string The attribute value
prefix string The namespace prefix
Результат void
		private new void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.Document.CreateAttribute(name, prefix);
			xa.Value		= text;
			this.Node.Attributes.Append(xa);
		}