[][src]Enum oox::shared::drawingml::core::AnimationGraphicalObjectBuildProperties

pub enum AnimationGraphicalObjectBuildProperties {
    BuildDiagram(AnimationDgmBuildProperties),
    BuildChart(AnimationChartBuildProperties),
}

Variants

This element specifies how to build the animation for a diagram.

Xml example

Consider having a diagram appear as on entity as opposed to by section. The bldDgm element should be used as follows:

<p:bdldLst>
  <p:bldGraphic spid="4" grpId="0">
    <p:bldSub>
      <a:bldDgm bld="one"/>
    </p:bldSub>
  </p:bldGraphic>
</p:bldLst>

This element specifies how to build the animation for a diagram.

Xml example

Consider the following example where a chart is specified to be animated by category rather than as one entity. Thus, the bldChart element should be used as follows:

<p:bdldLst>
  <p:bldGraphic spid="4" grpId="0">
    <p:bldSub>
      <a:bldChart bld="category"/>
    </p:bldSub>
  </p:bldGraphic>
</p:bldLst>

Trait Implementations

impl Clone for AnimationGraphicalObjectBuildProperties[src]

impl Debug for AnimationGraphicalObjectBuildProperties[src]

impl PartialEq<AnimationGraphicalObjectBuildProperties> for AnimationGraphicalObjectBuildProperties[src]

impl StructuralPartialEq for AnimationGraphicalObjectBuildProperties[src]

impl XsdChoice for AnimationGraphicalObjectBuildProperties[src]

impl XsdType for AnimationGraphicalObjectBuildProperties[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.