ISDBSongData::CachedPath: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:


===Property description===
===Property description===
 
Full path to the cached (Virtual CD) instance of the song. Empty is the song isn't cached.<br>
Field Name not confirmed
{{Property Summary|SongData|CachedPath|String|Songs|CacheName|Text|||}}
=== Related Topics ===
*[[ISDBSongData::Cached]]


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

Latest revision as of 23:21, 11 April 2008

CoClass SDBSongData, Interface ISDBSongData

Property Get CachedPath As String


Property description

Full path to the cached (Virtual CD) instance of the song. Empty is the song isn't cached.
Field Name not confirmed

CachedPath
Scripting Object SDBSongData
Value Name CachedPath
Value Type String
Database Table Songs
Field Name CacheName
Field Type Text

Example Code

Complete script

Sub

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

Related Topics