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

RestoreAfterProbing() private method

private RestoreAfterProbing ( MigraDoc.Rendering.ParagraphIterator paragraphIter, int blankCount, PdfSharp.Drawing.XUnit wordsWidth, PdfSharp.Drawing.XUnit xPosition, PdfSharp.Drawing.XUnit lineWidth, PdfSharp.Drawing.XUnit blankWidth ) : void
paragraphIter MigraDoc.Rendering.ParagraphIterator
blankCount int
wordsWidth PdfSharp.Drawing.XUnit
xPosition PdfSharp.Drawing.XUnit
lineWidth PdfSharp.Drawing.XUnit
blankWidth PdfSharp.Drawing.XUnit
return void
    void RestoreAfterProbing(ParagraphIterator paragraphIter, int blankCount, XUnit wordsWidth, XUnit xPosition, XUnit lineWidth, XUnit blankWidth)
    {
      this.currentLeaf = paragraphIter;
      this.currentBlankCount = blankCount;
      this.currentXPosition = xPosition;
      this.currentLineWidth = lineWidth;
      this.currentWordsWidth = wordsWidth;
      this.savedBlankWidth = blankWidth;
    }
ParagraphRenderer