ISequence class

ISequence class

Represents sequence (collection of effects).

The ISequence type exposes the following members:

Properties

PropertyDescription
countReturns the number of effects in a sequense.
Read-only int.
trigger_shapeReturns or sets shape target for INTERACTIVE sequence.
If sequence is not interactive then returns None.
Read/write IShape.

Returns an effect at the specified index.

Indexer

NameDescription
[index]Index

Methods

MethodDescription
add_effect(self, shape, effect_type, subtype, trigger_type)Add new effect to the end of sequence.
add_effect(self, paragraph, effect_type, subtype, trigger_type)Add new animation effect for paragraph to the end of sequence.
add_effect(self, chart, type, index, effect_type, subtype, trigger_type)Adds the new chart animation effect for category or series to the end of sequence.
add_effect(self, chart, type, series_index, categories_index, effect_type, subtype, trigger_type)Adds the new chart animation effect for elements in category or series to the end of sequence.
remove(self, item)Removes specified effect from a collection.
remove_at(self, index)Removes an effect from a collection.
clear(self)Removes all effects from a collection.
remove_by_shape(self, shape)Remove effect for the specified shape.
get_effects_by_shape(self, shape)Returns array of effects for the specified shape.
get_effects_by_paragraph(self, paragraph)Returns array of effects for the specified paragraph.
get_count(self, shape)Returns count of effects for the specified shape.

See Also