0

Word文書をPDFに変換する必要があります。同じ目的で spire.doc を使用しています。すべてが正常に機能していますが、1つだけです。Word 文書で定義されたヘッダー セクションがあり、変換後に PDF にはありません。誰でもこれを修正する方法を手伝ってもらえますか?

ありがとう

4

1 に答える 1

0

これを試しましたか:

Section section = document.Sections[0];
HeaderFooter header = section.HeadersFooters.Header;
Paragraph HParagraph = header.AddParagraph();
TextRange HText = HParagraph.AppendText("Spire.Doc for .NET");

//Set Header Text Format
HText.CharacterFormat.FontName = "Algerian";
HText.CharacterFormat.FontSize = 15;
HText.CharacterFormat.TextColor = Color.RoyalBlue;

//Set Header Paragraph Format
HParagraph.Format.HorizontalAlignment = HorizontalAlignment.Left;
HParagraph.Format.Borders.Bottom.BorderType=BorderStyle.ThickThinMediumGap;
HParagraph.Format.Borders.Bottom.Space = 0.05f;
HParagraph.Format.Borders.Bottom.Color = Color.DarkGray;

ご案内はこちらから

于 2015-07-24T06:48:10.197 に答える