ISDBSongData::VBR: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
MoDementia (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
Whether track is encoded with Variable Bitrate. | Whether track is encoded with Variable Bitrate. | ||
{{Property Summary|SongData|VBR|Value|Songs|VBR|Integer|(Details) VBR|1|}} | |||
[[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 02:01, 8 May 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let VBR As Boolean
Property description
Whether track is encoded with Variable Bitrate.
Scripting Object | SDBSongData |
Value Name | VBR |
Value Type | Value |
Database Table | Songs |
Field Name | VBR |
Field Type | Integer |
Tracklist Column | (Details) VBR |
Example Data | 1 |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueVBR = objSongData.VBR SDB.MessageBox "Value = '" & ValueVBR & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.VBR = ValueNewVBR 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub