0

Paragraph有没有办法在 PdfSharp/MigraDoc 中对 a 的一部分(例如,只是一个词)应用阴影?我尝试添加Style带有阴影的aDocument然后将样式名称传递给该AddFormattedText方法,但它只从样式中获取字体信息。

谢谢,

4

2 回答 2

1

我从几周开始就在使用 PdfSharp/MigraDoc,在准确回答您的问题之前,我已经阅读了它的源代码,可以随意使用。

简短的回答是:不可能

长答案是: Style 上唯一考虑的 部分AddFormattedText(string text, string style)是 Character 部分。然后Shading,作为 的一部分的ParagraphFormat不能被 PdfSharp/MigraDoc 应用和渲染。

编码答案是:

   public FormattedText AddFormattedText(string text, string style)
    {
      FormattedText formattedText = AddFormattedText(text);
      formattedText.Style = style;
      return formattedText;
    }



 internal class FormattedTextRenderer : RendererBase
   ...
 /// <summary>
    /// Renders the style if it is a character style and the font of the formatted text.
    /// </summary>
    void RenderStyleAndFont()
    {
      bool hasCharacterStyle = false;
      if (!this.formattedText.IsNull("Style"))
      {
        Style style = this.formattedText.Document.Styles[this.formattedText.Style];
        if (style != null && style.Type == StyleType.Character)
          hasCharacterStyle = true;
      }
      object font = GetValueAsIntended("Font");
      if (font != null)
      {
        if (hasCharacterStyle)
          this.rtfWriter.WriteControlWithStar("cs", this.docRenderer.GetStyleIndex(this.formattedText.Style));

        RendererFactory.CreateRenderer(this.formattedText.Font, this.docRenderer).Render();
      }
    }

我希望这可以帮助你。戴维德。

于 2013-06-27T16:41:20.550 回答
1

您可以尝试将样式加载到段落中,如下所示:

paragraph = section.AddParagraph();    
paragraph.Style = "StyleName";

就我个人而言,我没有使用阴影功能,但这就是我加载样式的方式,它工作正常。

于 2013-06-14T07:28:08.350 回答