AODL.Document.Content.Tables.Row.NewXmlNode C# (CSharp) Method

NewXmlNode() private method

Create a new Xml node.
private NewXmlNode ( string styleName ) : void
styleName string Name of the style.
return void
		private void NewXmlNode(string styleName)
		{
			this.Node		= this.Document.CreateNode("table-row", "table");

			if (styleName != null)
			{
				XmlAttribute xa = this.Document.CreateAttribute("style-name", "table");
				xa.Value		= styleName;
				this.Node.Attributes.Append(xa);
			}
		}