AODL.Document.Content.Text.Paragraph.Init C# (CSharp) 메소드

Init() 개인적인 메소드

Create the Paragraph.
private Init ( string styleName ) : void
styleName string The style name.
리턴 void
		private void Init(string styleName)
		{
			if (styleName != "Standard" 
				&& styleName != "Table_20_Contents"
				&&  styleName != "Text_20_body")
			{
				this.Style				= (IStyle)new ParagraphStyle(this.Document, styleName);
				this.Document.Styles.Add(this.Style);
			}
			this.InitStandards();
			this.StyleName				= styleName;
		}