[][src]Struct oox::shared::drawingml::coordsys::GroupTransform2D

pub struct GroupTransform2D {
    pub rotate_angle: Option<Angle>,
    pub flip_horizontal: Option<bool>,
    pub flip_vertical: Option<bool>,
    pub offset: Option<Point2D>,
    pub extents: Option<PositiveSize2D>,
    pub child_offset: Option<Point2D>,
    pub child_extents: Option<PositiveSize2D>,
}

Fields

rotate_angle: Option<Angle>

Rotation. Specifies the clockwise rotation of a group in 1/64000 of a degree.

Defaults to 0

flip_horizontal: Option<bool>

Horizontal flip. When true, this attribute defines that the group is flipped horizontally about the center of its bounding box.

Defaults to false

flip_vertical: Option<bool>

Vertical flip. When true, this attribute defines that the group is flipped vertically about the center of its bounding box.

Defaults to false

offset: Option<Point2D>

This element specifies the location of the bounding box of an object. Effects on an object are not included in this bounding box.

extents: Option<PositiveSize2D>

This element specifies the size of the bounding box enclosing the referenced object.

child_offset: Option<Point2D>

This element specifies the location of the child extents rectangle and is used for calculations of grouping, scaling, and rotation behavior of shapes placed within a group.

child_extents: Option<PositiveSize2D>

This element specifies the size dimensions of the child extents rectangle and is used for calculations of grouping, scaling, and rotation behavior of shapes placed within a group.

Methods

impl GroupTransform2D[src]

pub fn from_xml_element(xml_node: &XmlNode) -> Result<Self>[src]

Trait Implementations

impl Clone for GroupTransform2D[src]

impl Copy for GroupTransform2D[src]

impl Debug for GroupTransform2D[src]

impl Default for GroupTransform2D[src]

impl PartialEq<GroupTransform2D> for GroupTransform2D[src]

impl StructuralPartialEq for GroupTransform2D[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.