ISDBSongData::MediaLabel: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
MoDementia (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
===Property description=== | ===Property description=== | ||
To be confirmed, could be Medias-ShowLabel | |||
{{Property Summary|SongData|MediaLabel|String|Medias|MediaLabel|Text|Media|Docs|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Revision as of 03:03, 22 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get MediaLabel As String
Property description
To be confirmed, could be Medias-ShowLabel
Scripting Object | SDBSongData |
Value Name | MediaLabel |
Value Type | String |
Database Table | Medias |
Field Name | MediaLabel |
Field Type | Text |
Tracklist Column | Media |
Example Data | Docs |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringMediaLabel = objSongData.MediaLabel SDB.MessageBox "Value = '" & StringMediaLabel & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.MediaLabel = StringNewMediaLabel 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub