MigraDoc.Rendering.ParagraphRenderer.SaveBeforeProbing C# (CSharp) Метод

SaveBeforeProbing() приватный Метод

private SaveBeforeProbing ( 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 SaveBeforeProbing(out ParagraphIterator paragraphIter, out int blankCount, out XUnit wordsWidth, out XUnit xPosition, out XUnit lineWidth, out XUnit blankWidth)
    {
      paragraphIter = this.currentLeaf;
      blankCount = this.currentBlankCount;
      xPosition = this.currentXPosition;
      lineWidth = this.currentLineWidth;
      wordsWidth = this.currentWordsWidth;
      blankWidth = this.savedBlankWidth;
    }
ParagraphRenderer