ISDBSongData::Custom3: 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===
 
The Tracklist Column is configurable in Options --> Library --> Appearence
{{Property Summary|SongData|Custom3|String|Songs|Custom3|Text|Custom 3||}}


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

Latest revision as of 01:06, 12 April 2008

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let Custom3 As String


Property description

The Tracklist Column is configurable in Options --> Library --> Appearence

Custom3
Scripting Object SDBSongData
Value Name Custom3
Value Type String
Database Table Songs
Field Name Custom3
Field Type Text
Tracklist Column Custom 3

Example Code

Complete script

Sub

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