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

AddListLevel() private method

Adds the list level.
private AddListLevel ( int level ) : void
level int
return void
		private void AddListLevel(int level)
		{
			this.ListLevelProperties			= new ListLevelProperties(this);
			double spacebefore					= 0.635;
			spacebefore							*= level;
			string space						= spacebefore.ToString().Replace(",",".")+"cm";
			string minlabelwidth				= "0.635cm";
			this.ListLevelProperties.MinLabelWidth	= minlabelwidth;
			this.ListLevelProperties.SpaceBefore	= space;
		}