AODL.Document.Content.Text.List.List C# (CSharp) Method

List() public method

Create a new List which is used to represent a inner list.
public List ( IDocument document, List outerlist ) : System
document IDocument The IDocument
outerlist List The List to which this List belongs.
return System
		public List(IDocument document, List outerlist)
		{
			this.Document						= document;
			this.ParagraphStyle					= outerlist.ParagraphStyle;			
			this.InitStandards();
			this._type							= outerlist.ListType;
			//Create an inner list node, don't need a style
			//use the parents list style
			this.NewXmlNode();
		}

Same methods

List::List ( IDocument document, XmlNode node ) : System
List::List ( IDocument document, string styleName, ListStyles typ, string paragraphStyleName ) : System