ISDBSongData::PeakValue

From MediaMonkey Wiki
Jump to navigation Jump to search

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let PeakValue As Double


Property description

There dosen't seem to be a corresponding table column for this value. Perhaps it is calculated from some other data.

PeakValue
Scripting Object SDBSongData
Value Name PeakValue
Value Type Value

Example Code

Complete script

Sub

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