[][src]Struct msoffice_pptx::pml::TLAnimateBehavior

pub struct TLAnimateBehavior {
    pub by: Option<String>,
    pub from: Option<String>,
    pub to: Option<String>,
    pub calc_mode: Option<TLAnimateBehaviorCalcMode>,
    pub value_type: Option<TLAnimateBehaviorValueType>,
    pub common_behavior_data: Box<TLCommonBehaviorData>,
    pub time_animate_value_list: Option<Vec<TLTimeAnimateValue>>,
}

Fields

by: Option<String>

This attribute specifies a relative offset value for the animation with respect to its position before the start of the animation.

from: Option<String>

This attribute specifies the starting value of the animation.

to: Option<String>

This attribute specifies the ending value for the animation as a percentage.

calc_mode: Option<TLAnimateBehaviorCalcMode>

This attribute specifies the interpolation mode for the animation.

value_type: Option<TLAnimateBehaviorValueType>

This attribute specifies the type of property value.

common_behavior_data: Box<TLCommonBehaviorData>time_animate_value_list: Option<Vec<TLTimeAnimateValue>>

This element specifies a list of time animated value elements.

<p:anim calcmode="lin" valueType="num">
  <p:cBhvr additive="base"> … </p:cBhvr>
  <p:tavLst>
    <p:tav tm="0%">
      <p:val>
        <p:strVal val="1+#ppt_h/2"/>
      </p:val>
    </p:tav>
    <p:tav tm="100000">
      <p:val>
        <p:strVal val="#ppt_y"/>
      </p:val>
    </p:tav>
  </p:tavLst>
</p:anim>

Methods

impl TLAnimateBehavior[src]

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

Trait Implementations

impl Clone for TLAnimateBehavior[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for TLAnimateBehavior[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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