Click or drag to resize
SequentialMusicList Class
The class SequentialMusicList inherits from the class MusicObject. The class consists of an ordered list of MusicObjects, each played after the last pause of the previous one.
Inheritance Hierarchy

Namespace: MidiGremlin
Assembly: MidiGremlin (in MidiGremlin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class SequentialMusicList : MusicObject, 
	IList<MusicObject>, ICollection<MusicObject>, IEnumerable<MusicObject>, 
	IEnumerable

The SequentialMusicList type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Public propertyIsReadOnly
Indicates that the list is not read-only.
Public propertyItem
Gets and sets MusicObject from the indicated index.
Top
Methods
  NameDescription
Public methodAdd
Public methodClear
Public methodContains
Public methodCopyTo
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodIndexOf
Searches for the specified MusicObject and returns the index of the first occurrence within the list.
Public methodInsert
Public methodRemove
Removes the first occurrence of the object within the list.
Public methodRemoveAt
Removes the element at a specified index.
Public methodSelectT(FuncT, Int32, MusicObject)
Projects all music objects of specified type into a MusicObject of the same structure.
(Inherited from MusicObject.)
Public methodSelectT(FuncT, MusicObject)
Projects all music objects of specified type into a MusicObject of the same structure.
(Inherited from MusicObject.)
Public methodSelectT(FuncT, MusicObject)
Projects all music objects of specified type into a MusicObject of the same structure.
(Overrides MusicObjectSelectT(FuncT, MusicObject).)
Top
See Also