docx-rs/docx-core/examples/comment.rs

21 lines
624 B
Rust
Raw Permalink Normal View History

use docx_rs::*;
2020-01-24 11:50:16 +02:00
pub fn main() -> Result<(), DocxError> {
let path = std::path::Path::new("./output/comment.docx");
let file = std::fs::File::create(path).unwrap();
2020-01-24 11:50:16 +02:00
Docx::new()
.add_paragraph(
Paragraph::new()
.add_comment_start(
Comment::new(1)
.author("bokuweb")
.date("2019-01-01T00:00:00Z")
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello"))),
2020-01-24 11:50:16 +02:00
)
.add_comment_end(1),
)
.build()
.pack(file)?;
Ok(())
}