ppt-rs 0.2.14

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
1
2
3
4
5
6
7
8
9
//! Unified PPTX element types

mod color;
mod position;

pub use color::{Color, RgbColor, SchemeColor};
pub use position::{Position, Size, Transform, EMU_PER_CM, EMU_PER_INCH, EMU_PER_MM, EMU_PER_PT};

pub use crate::core::{ElementSized, Positioned, ToXml};