AODL.Document.Styles.Properties.TableProperties.NewXmlNode C# (CSharp) 메소드

NewXmlNode() 개인적인 메소드

Create the XmlNode which represent the propertie element.
private NewXmlNode ( ) : void
리턴 void
		private void NewXmlNode()
		{
			IStyle style = this.Style;
			object doc = style.Document;
			IDocument document = doc as IDocument;
			System.Xml.XmlNode node = document.CreateNode("table-properties", "style");
			this.Node		= node;
			//Set default properties
			this.Width		= "16.99cm";
			this.Align		= "margin";
			this.Shadow		= "none";
		}