ISDBSongData::Grouping: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
MoDementia (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
Introduced in MediaMonkey 3.0.0.1092. | Introduced in MediaMonkey 3.0.0.1092. | ||
{{Property Summary|SongData|Grouping|String|Songs|GroupDesc|Text|Grouping||}} | |||
[[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 07:49, 21 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Grouping As String
Property description
Edit 'Grouping' field of a track.
Introduced in MediaMonkey 3.0.0.1092.
Scripting Object | SDBSongData |
Value Name | Grouping |
Value Type | String |
Database Table | Songs |
Field Name | GroupDesc |
Field Type | Text |
Tracklist Column | Grouping |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringGrouping = objSongData.Grouping SDB.MessageBox "Value = '" & StringGrouping & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Grouping = StringNewGrouping 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub