AODL.Document.Styles.CellStyle.NewXmlNode C# (CSharp) Method

NewXmlNode() private method

Create a new Xml node.
private NewXmlNode ( ) : void
return void
		private void NewXmlNode()
		{
			this.Node				= this.Document.CreateNode("style", "style");
			this.FamilyStyle		= FamiliyStyles.TableCell;
			
			if (this.Document is SpreadsheetDocument)
				this.ParentStyleName	= "Default";
		}