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

FormatWord() 개인적인 메소드

Helper function for formatting word-like elements like text and fields.
private FormatWord ( string word ) : FormatResult
word string
리턴 FormatResult
    FormatResult FormatWord(string word)
    {
      XUnit width = MeasureString(word);
      return FormatAsWord(width);
    }
ParagraphRenderer