ISequenceCollection
ISequenceCollection interface
Represents collection of interactive sequences.
public interface ISequenceCollection : IEnumerable<ISequence>
Properties
Name | Description |
---|
AsIEnumerable { get; } | Returns IEnumerable interface. Read-only IEnumerable. |
Count { get; } | Returns the number of elements in a collection Read-only Int32. |
Item { get; } | Returns a sequense at the specified index. |
Methods
Name | Description |
---|
Add(IShape) | Add new interactive sequence. |
Clear() | Removes all sequences from a collection. |
Remove(ISequence) | Removes specified sequence from a collection. |
RemoveAt(int) | Removes sequence at the specified index. |
See Also