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

ListLevelStyle() public method

Initializes a new instance of the ListLevelStyle class.
public ListLevelStyle ( IDocument document, ListStyle style, ListStyles typ, int level ) : System
document IDocument The document.
style ListStyle The style.
typ ListStyles The typ.
level int The level.
return System
		public ListLevelStyle(IDocument document,ListStyle style, ListStyles typ, int level)
		{
			this.Document				= document;			
			this.ListStyle				= style;
			this.InitStandards(level);
			
			this.NewXmlNode(typ, level);
			this.AddListLevel(level);
		}