ISDBUI::ShowPropertiesSheet

From MediaMonkey Wiki
Revision as of 18:49, 24 May 2010 by Ludek (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBUI, Interface ISDBUI

Proc ShowPropertiesSheet(Id As Long)


Parameters

Name Type Description
ID Long Id of sheet to be shown (previously returned by a call to AddPropertiesSheet) or a default sheet (see other possible properties sheet values).


Method description

Shows previously created custom sheet in Properties dialog that was hidden by calling ISDBUI::HidePropertiesSheet

Introduced in MediaMonkey 4.0

Example code

' Create our own option sheet
ind = SDB.UI.AddPropertiesSheet( "Test", Script.ScriptPath, "InitSheet", "TrackChange", "SaveSheet")
' Hide this sheet
SDB.UI.HidePropertiesSheet ind
' Show this sheet
SDB.UI.ShowPropertiesSheet ind

Related Topics