AODL.Document.Styles.Properties.SectionProperties.NewXmlNode C# (CSharp) Method

NewXmlNode() private method

Create a new XmlNode.
private NewXmlNode ( ) : void
return void
		private void NewXmlNode()
		{			
			this.Node		= this.Style.Document.CreateNode("section-properties", "style");

			XmlAttribute xa = this.Style.Document.CreateAttribute("editable", "style");
			xa.Value		= "false";
			this.Node.Attributes.Append(xa);
		}