Beispiel #1
0
 internal HeightTreeNode(DocumentLine documentLine, double height)
 {
     this.documentLine = documentLine;
     this.totalCount   = 1;
     this.lineNode     = new HeightTreeLineNode(height);
     this.totalHeight  = height;
 }
Beispiel #2
0
		internal HeightTreeNode(DocumentLine documentLine, double height)
		{
			this.documentLine = documentLine;
			this.totalCount = 1;
			this.lineNode = new HeightTreeLineNode(height);
			this.totalHeight = height;
		}