17 lines
483 B
Rust
17 lines
483 B
Rust
|
use docx_core::*;
|
||
|
|
||
|
pub fn main() -> Result<(), DocxError> {
|
||
|
let path = std::path::Path::new("./alignment.docx");
|
||
|
let file = std::fs::File::create(&path).unwrap();
|
||
|
Docx::new()
|
||
|
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
|
||
|
.add_paragraph(
|
||
|
Paragraph::new()
|
||
|
.add_run(Run::new().add_text(" World"))
|
||
|
.align(AlignmentType::Right),
|
||
|
)
|
||
|
.build()
|
||
|
.pack(file)?;
|
||
|
Ok(())
|
||
|
}
|