ISDBUI::DeleteOptionSheet

From MediaMonkey Wiki
Revision as of 23:00, 14 February 2008 by Jiri (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

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