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

FormatListSymbol() 개인적인 메소드

private FormatListSymbol ( ) : void
리턴 void
    void FormatListSymbol()
    {
      string symbol;
      XFont font;
      if (GetListSymbol(out symbol, out font))
      {
        this.currentVerticalInfo = CalcVerticalInfo(font);
        this.currentXPosition += this.gfx.MeasureString(symbol, font, StringFormat).Width;
        FormatTab();
      }
    }
ParagraphRenderer