ISDBAlbumArtList::AddNew

From MediaMonkey Wiki
Revision as of 14:19, 21 March 2007 by Jiri (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBAlbumArtList, Interface ISDBAlbumArtList

Property Get AddNew As ISDBAlbumArtItem


Property description

Adds new item to the list and returns it to user for further modifications.

Example code

Set SL = SDB.CurrentSongList
  If SL.Count>0 Then
    Set Track = SL.Item(0)
    Set AAList = Track.AlbumArt
    Set AA = AAList.AddNew
    AA.PicturePath = "D:\test.jpg"
    AA.Description = "Test"
    AA.ItemType = 5
    AA.ItemStorage = 0
    AAList.UpdateDB
  End If