AODL.Document.Content.Charts.ChartGrid.NewXmlNode C# (CSharp) 메소드

NewXmlNode() 공개 메소드

public NewXmlNode ( string styleName ) : void
styleName string
리턴 void
		public void NewXmlNode(string styleName)
		{
			this.Node = this.Document .CreateNode ("grid","chart");

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


		}
		#region IContent Member