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