23 lines
694 B
Rust
23 lines
694 B
Rust
|
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();
|
||
|
let header = Header::new()
|
||
|
.add_page_num(
|
||
|
PageNum::new()
|
||
|
.wrap("none")
|
||
|
.v_anchor("text")
|
||
|
.h_anchor("margin")
|
||
|
.x_align("right")
|
||
|
.y(1),
|
||
|
)
|
||
|
.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(())
|
||
|
}
|