ISDBSongData::Lyrics
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Lyrics As String
Property description
Scripting Object | SDBSongData |
Value Name | Lyrics |
Value Type | String |
Database Table | Songs |
Field Name | Lyrics |
Field Type | Text |
Tracklist Column | Lyrics |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringLyrics = objSongData.Lyrics SDB.MessageBox "Value = '" & StringLyrics & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Lyrics = StringNewLyrics 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub