Interface IAimpPlaylistGroup
The interface describes playlist group that can contains one or more playlist items.
Namespace: AIMP.SDK.Playlist
Assembly: AIMP.SDK.dll
Syntax
public interface IAimpPlaylistGroup
  Properties
Count
Gets the count.
Declaration
int Count { get; }
  	Duration
Gets the total duration of items in the group, in seconds.
Declaration
double Duration { get; }
  	Expanded
Gets or sets a value indicating whether this IAimpPlaylistGroup is expanded.
Declaration
bool Expanded { get; set; }
  	Index
Gets the index.
Declaration
int Index { get; }
  	Name
Gets the name.
Declaration
string Name { get; }
  	Selected
Gets or sets a value indicating whether this IAimpPlaylistGroup is selected.
Declaration
bool Selected { get; set; }
  	Methods
GetItem(Int32)
Gets the item.
Declaration
AimpActionResult<IAimpPlaylistItem> GetItem(int index)
  	Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | index | The index.  |