IMediaList class

IMediaList class

The MediaList interface provides the abstraction of an ordered collection of media, without defining or constraining how this collection is implemented. An empty list is the same as a list that contains the medium “all”.

The IMediaList type exposes the following members:

Properties

PropertyDescription
media_textThe parsable textual representation of the media list. This is a comma-separated list of media.
lengthThe number of media in the list. The range of valid media is 0 to length-1 inclusive.

Returns the indexth in the list. If index is greater than or equal to the number of media in the list, this returns null. The media index.

Indexer

NameDescription
[index]

Methods

MethodDescription
delete_mediumDeletes the medium indicated by oldMedium from the list.
append_mediumAdds the medium newMedium to the end of the list. If the newMedium is already used, it is first removed.

See Also