ISDBUI::ShowPropertiesSheet: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
m (introduced)
 
Line 1: Line 1:
{{MethodDeclaration|SDBUI|ISDBUI|Proc ShowPropertiesSheet(Id As Long)}}
{{MethodDeclaration|SDBUI|ISDBUI|Proc ShowPropertiesSheet(ID As Long)}}


===Parameters===
===Parameters===
Line 10: Line 10:
Shows previously created custom sheet in Properties dialog that was hidden by calling [[ISDBUI::HidePropertiesSheet]]
Shows previously created custom sheet in Properties dialog that was hidden by calling [[ISDBUI::HidePropertiesSheet]]


Introduced in MediaMonkey 4.0
{{Introduced|4.0}}


===Example code===                     
===Example code===                     
<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", -1)
ind = SDB.UI.AddPropertiesSheet("Test", Script.ScriptPath, "InitSheet", "TrackChange", "SaveSheet", -1)
' Hide this sheet
' Hide this sheet
SDB.UI.HidePropertiesSheet ind
SDB.UI.HidePropertiesSheet ind

Latest revision as of 21:11, 20 April 2013

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 version 4.0.


Example code

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

Related Topics