2021-06-23 12:39:01 +03:00
|
|
|
use docx_rs::*;
|
|
|
|
|
|
|
|
pub fn main() -> Result<(), DocxError> {
|
|
|
|
let path = std::path::Path::new("./output/custom_property.docx");
|
2024-02-09 14:04:42 +02:00
|
|
|
let file = std::fs::File::create(path).unwrap();
|
2021-06-23 12:39:01 +03:00
|
|
|
Docx::new()
|
|
|
|
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
|
|
|
|
.custom_property("hello", "world")
|
|
|
|
.build()
|
|
|
|
.pack(file)?;
|
|
|
|
Ok(())
|
|
|
|
}
|