MigraDoc.Rendering.ParagraphRenderer.RestoreAfterProbing C# (CSharp) 메소드

RestoreAfterProbing() 개인적인 메소드

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
리턴 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