2024-03-18 10:28:52 +02:00
|
|
|
use docx_rs::*;
|
|
|
|
|
|
|
|
pub fn main() -> Result<(), DocxError> {
|
|
|
|
let path = std::path::Path::new("./output/examples/header_with_page_num.docx");
|
|
|
|
let file = std::fs::File::create(path).unwrap();
|
2024-06-09 03:01:52 +03:00
|
|
|
let header = Header::new().add_paragraph(
|
|
|
|
Paragraph::new()
|
|
|
|
.wrap("none")
|
|
|
|
.v_anchor("text")
|
|
|
|
.h_anchor("margin")
|
|
|
|
.x_align("right")
|
|
|
|
.add_run(Run::new().add_text("Hello"))
|
|
|
|
.add_page_num(PageNum::new()),
|
|
|
|
);
|
2024-03-18 10:28:52 +02:00
|
|
|
Docx::new()
|
|
|
|
.header(header)
|
|
|
|
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("World")))
|
|
|
|
.build()
|
|
|
|
.pack(file)?;
|
|
|
|
Ok(())
|
|
|
|
}
|