AODL.Document.Content.Tables.Column.NewXmlNode C# (CSharp) Метод

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

Create a new Xml node.
private NewXmlNode ( string styleName ) : void
styleName string Name of the style.
Результат void
		private void NewXmlNode(string styleName)
		{
			this.Node		= this.Document.CreateNode("table-column", "table");

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

			if (this.Document is SpreadsheetDocument)
				this.ParentCellStyleName = "Default";
		}