Interface IAimpPlaylistItem
The storage for information about the playlist item.
Namespace: AIMP.SDK.Playlist
Assembly: AIMP.SDK.dll
Syntax
public interface IAimpPlaylistItem
Properties
DisplayText
Gets the display text.
Declaration
string DisplayText { get; }
FileInfo
Gets the file information.
Declaration
IAimpFileInfo FileInfo { get; }
FileName
Gets or sets the name of the file.
Declaration
string FileName { get; set; }
Group
Gets the group.
Declaration
IAimpPlaylistGroup Group { get; }
Index
Gets or sets the absolute item index in the playlist.
Declaration
int Index { get; set; }
Mark
Gets or sets the mark (0.0 to 5.0)
Declaration
double Mark { get; set; }
PlaybackIndex
Index in the internal playback queue. This index is different from playlist item index.
Declaration
int PlaybackIndex { get; }
PlaybackSwitch
Gets or sets a value indicating whether [playback switch].
Declaration
bool PlaybackSwitch { get; set; }
PlayList
Gets or sets the play list.
Declaration
IAimpPlaylist PlayList { get; set; }
Selected
Gets or sets a value indicating whether this IAimpPlaylistItem is selected.
Declaration
bool Selected { get; set; }
Methods
ReloadInfo()
Reloads the information.
Declaration
AimpActionResult ReloadInfo()