MigraDoc.Rendering.ParagraphRenderer.HandleNonFittingLine C# (CSharp) Method

HandleNonFittingLine() private method

private HandleNonFittingLine ( ) : void
return void
    void HandleNonFittingLine()
    {
      if (this.currentLeaf != null)
      {
        if (this.savedWordWidth > 0)
        {
          this.currentWordsWidth = this.savedWordWidth;
          this.currentLineWidth = this.savedWordWidth;
        }
        this.currentLeaf = this.currentLeaf.GetNextLeaf();
        this.currentYPosition += this.currentVerticalInfo.height;
        this.currentVerticalInfo = new VerticalLineInfo();
      }
    }
ParagraphRenderer