ISDBUI::DeleteOptionSheet
From MMWiki
CoClass SDBUI, Interface ISDBUI
Proc DeleteOptionSheet(Id As Long)
Contents |
[edit]
Parameters
| Name | Type | Description |
|---|---|---|
| ID | Long | Id of sheet to be removed (previously returned by a call to AddOptionSheet). |
[edit]
Method description
Removes previously created custom sheet in Options dialog.
Introduced in MediaMonkey 3.0.3.1138.
[edit]
Example code
' Create our own option sheet ind = SDB.UI.AddOptionSheet( "Test", Script.ScriptPath, "InitSheet", "SaveSheet", 0) ' Delete this sheet SDB.UI.DeleteOptionSheet ind
[edit]
