ISDBSongData::Leveling: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
No edit summary  | 
				MoDementia (talk | contribs)  No edit summary  | 
				||
| Line 2: | Line 2: | ||
===Property description===  | ===Property description===  | ||
{{Property Summary|SongData|Leveling|Value|Songs|NormalizeTrack|Numeric|Track Volume|-2.8|}}  | |||
[[Category:Scripting|{{PAGENAME}}]]  | [[Category:Scripting|{{PAGENAME}}]]  | ||
Latest revision as of 02:45, 22 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Leveling As Double
Property description
| Scripting Object | SDBSongData | 
| Value Name | Leveling | 
| Value Type | Value | 
| Database Table | Songs | 
| Field Name | NormalizeTrack | 
| Field Type | Numeric | 
| Tracklist Column | Track Volume | 
| Example Data | -2.8 | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueLeveling = objSongData.Leveling SDB.MessageBox "Value = '" & ValueLeveling & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Leveling = ValueNewLeveling 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub