ISDBSongData::AlbumArt: Difference between revisions
Jump to navigation
Jump to search
MoDementia (talk | contribs) No edit summary |
|||
Line 5: | Line 5: | ||
Returns list of album art items associated with this track as [[SDBAlbumArtList]]. | Returns list of album art items associated with this track as [[SDBAlbumArtList]]. | ||
{{Property Summary|SongData|AlbumArt|ObjectList|Covers File|See Members|Mixed|(Properties)Album Art||}} | {{Property Summary|SongData|AlbumArt|ObjectList|Covers File|See Members|Mixed|(Properties)Album Art||}} | ||
===See also=== | |||
* More example code at: [[ISDBImage::ImageData]] | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] | ||
[[Category:Automation objects|{{PAGENAME}}]] | [[Category:Automation objects|{{PAGENAME}}]] | ||
[[Category:CoClass SDBSongData|{{PAGENAME}}]] | [[Category:CoClass SDBSongData|{{PAGENAME}}]] | ||
[[Category:Interface ISDBSongData|{{PAGENAME}}]] | [[Category:Interface ISDBSongData|{{PAGENAME}}]] |
Latest revision as of 18:24, 29 May 2011
CoClass SDBSongData, Interface ISDBSongData
Property Get AlbumArt As SDBAlbumArtList
Property description
Returns list of album art items associated with this track as SDBAlbumArtList.
Scripting Object | SDBSongData |
Value Name | AlbumArt |
Value Type | ObjectList |
Database Table | Covers File |
Field Name | See Members |
Field Type | Mixed |
Tracklist Column | (Properties)Album Art |
Members | SDBAlbumArtList |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ObjectListAlbumArt = objSongData.AlbumArt.Member SDB.MessageBox "Value = '" & ObjectListAlbumArt & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.AlbumArt.Member = ObjectListNewAlbumArt 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub
See also
- More example code at: ISDBImage::ImageData