IgnoreHeaderFooter

ImportFormatOptions.IgnoreHeaderFooter property

Ruft einen booleschen Wert ab oder legt diesen fest, der angibt, dass die Quellformatierung des Kopf-/Fußzeileninhalts ignoriert wird wennKeepSourceFormatting Modus wird verwendet. Der Standardwert istWAHR .

public bool IgnoreHeaderFooter { get; set; }

Beispiele

Zeigt, wie festgelegt wird, ob die Quellformatierung des Kopf-/Fußzeileninhalts ignoriert oder nicht formatiert werden soll.

Document dstDoc = new Document(MyDir + "Document.docx");
Document srcDoc = new Document(MyDir + "Header and footer types.docx");

ImportFormatOptions importFormatOptions = new ImportFormatOptions();
importFormatOptions.IgnoreHeaderFooter = false;

dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting, importFormatOptions);

dstDoc.Save(ArtifactsDir + "DocumentBuilder.DoNotIgnoreHeaderFooter.docx");

Siehe auch