ISDBSongData::Genre

From MediaMonkey Wiki
Jump to navigation Jump to search

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let Genre As String


Property description

Genre
Scripting Object SDBSongData
Value Name Genre
Value Type String
Database Table Songs
Field Name Genre
Field Type Text
Tracklist Column Genre
Example Data Rock

Example Code

Complete script

Sub

  For iCounter = 0 to objSongList.count - 1                                    'SongLists
      Set objSongData = objSongList.Item(iCounter)
      StringGenre = objSongData.Genre
      SDB.MessageBox "Value = '" &  StringGenre & "'", mtError, Array(mbOK)    'SDB.MessageBox
  Next
' objSongData.Genre = StringNewGenre 'Commented Out For Safety
' objSonglist.UpdateAll              'Commented Out For Safety                 'UpdateAll
                         Updates db and writes tags (if checked in options)
End Sub