ISDBSongData::Encoder
		
		
		
		Jump to navigation
		Jump to search
		
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Encoder As String
Property description
| Scripting Object | SDBSongData | 
| Value Name | Encoder | 
| Value Type | String | 
| Database Table | Songs | 
| Field Name | Encoder | 
| Field Type | Text | 
| Tracklist Column | Properties Details | 
| Example Data | MediaMonkey | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringEncoder = objSongData.Encoder SDB.MessageBox "Value = '" & StringEncoder & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Encoder = StringNewEncoder 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub
