Skip to main content

PpAlign

Type Alias PpAlign 

Source
pub type PpAlign = Alignment;
Expand description

段落水平对齐(PP_ALIGN)——python-pptx 风格别名。

对标 python-pptx 中 pptx.enum.text.PP_ALIGN。本枚举与 Alignment 1:1 对应,但作为面向用户的“python-pptx 同名“别名。

Aliased Type§

pub enum PpAlign {
    Left,
    Center,
    Right,
    Justify,
    Distribute,
}

Variants§

§

Left

左对齐。

§

Center

居中。

§

Right

右对齐。

§

Justify

两端对齐。

§

Distribute

分散对齐。