ISDBSongData::PeakValue: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
Line 2: Line 2:


===Property description===
===Property description===
 
There dosen't seem to be a corresponding table column for this value. Perhaps it is calculated from some other data.
{{Property Summary|SongData|PeakValue|Value||||||}}


[[Category:Scripting|{{PAGENAME}}]]
[[Category:Scripting|{{PAGENAME}}]]

Latest revision as of 00:33, 8 May 2008

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