get_Rewind()

Timing::get_Rewind() method

This attribute specifies if the effect will rewind when done playing. Read bool.

bool Aspose::Slides::Animation::Timing::get_Rewind() override

Remarks

auto presentation = System::MakeObject<Presentation>(u"demo.pptx");

// Get the effects sequence for the first slide
System::SharedPtr<ISequence> effectsSequence = presentation->get_Slide(0)->get_Timeline()->get_MainSequence();

// Get the first effect of main sequence.
System::SharedPtr<IEffect> effect = effectsSequence->idx_get(0);

// Turn the effect Timing/Rewind on.
effect->get_Timing()->set_Rewind(true);

See Also