AODL.Document.Styles.SectionStyle.SectionStyle C# (CSharp) Method

SectionStyle() public method

Initializes a new instance of the SectionStyle class.
public SectionStyle ( IContent content, string styleName ) : System
content IContent The content.
styleName string Name of the style.
return System
		public SectionStyle(IContent content, string styleName)
		{
			this.Content			= content;
			this.Document			= content.Document;
			this.NewXmlNode(styleName);
			this.InitStandards();
			this.SectionProperties	= new SectionProperties(this);
//			this.Document.Styles.Add(this);
		}

Same methods

SectionStyle::SectionStyle ( IDocument document, XmlNode node ) : System