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

FormatWord() private method

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