ISDBUI::DeleteOptionSheet: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
m (introduced)
 
Line 10: Line 10:
Removes previously created custom sheet in Options dialog.
Removes previously created custom sheet in Options dialog.


Introduced in MediaMonkey 3.0.3.1138.
{{Introduced|3.0.3.1138}}


===Example code===                     
===Example code===                     

Latest revision as of 15:45, 23 April 2013

CoClass SDBUI, Interface ISDBUI

Proc DeleteOptionSheet(Id As Long)


Parameters

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


Method description

Removes previously created custom sheet in Options dialog.

Introduced in MediaMonkey version 3.0.3.1138.


Example code

' Create our own option sheet
ind = SDB.UI.AddOptionSheet( "Test", Script.ScriptPath, "InitSheet", "SaveSheet", 0)
' Delete this sheet
SDB.UI.DeleteOptionSheet ind

Related Topics