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

FormatLineBreak() 개인적인 메소드

private FormatLineBreak ( ) : FormatResult
리턴 FormatResult
    FormatResult FormatLineBreak()
    {
      if (this.phase != Phase.Rendering)
        this.currentLeaf = this.currentLeaf.GetNextLeaf();

      this.savedWordWidth = 0;
      return FormatResult.NewLine;
    }
ParagraphRenderer