AODL.Document.Styles.MasterStyles.TextPageLayout.CreateAttribute C# (CSharp) Method

CreateAttribute() private method

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.
return void
		private void CreateAttribute(string name, string text, string prefix)
		{
			XmlAttribute xa = this.TextDocument.CreateAttribute(prefix, name);
			xa.Value		= text;
			this.PropertyNode.Attributes.Append(xa);
		}