ISDBUI::DeletePropertiesSheet: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 15: Line 15:
<source lang="vb">
<source lang="vb">
' Create our own option sheet
' Create our own option sheet
ind = SDB.UI.AddPropertiesSheet( "Test", Script.ScriptPath, "InitSheet", "TrackChange", "SaveSheet")
ind = SDB.UI.AddPropertiesSheet( "Test", Script.ScriptPath, "InitSheet", "TrackChange", "SaveSheet", -1)
' Delete this sheet
' Delete this sheet
SDB.UI.DeletePropertiesSheet ind
SDB.UI.DeletePropertiesSheet ind

Revision as of 15:06, 25 May 2010

CoClass SDBUI, Interface ISDBUI

Proc DeletePropertiesSheet(Id As Long)


Parameters

Name Type Description
ID Long Id of sheet to be removed (previously returned by a call to AddPropertiesSheet).


Method description

Removes previously created custom sheet in Properties dialog.

Introduced in MediaMonkey 4.0

Example code

' Create our own option sheet
ind = SDB.UI.AddPropertiesSheet( "Test", Script.ScriptPath, "InitSheet", "TrackChange", "SaveSheet", -1)
' Delete this sheet
SDB.UI.DeletePropertiesSheet ind

Related Topics