docx-rs/docx-core/examples/header.rs

15 lines
454 B
Rust

use docx_rs::*;
pub fn main() -> Result<(), DocxError> {
let path = std::path::Path::new("./output/header.docx");
let file = std::fs::File::create(&path).unwrap();
let header =
Header::new().add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")));
Docx::new()
.header(header)
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("World")))
.build()
.pack(file)?;
Ok(())
}