ISDBMenuItem::OnClickFunc: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
(Supplanted by ISDBScriptControl::RegisterEvent)
Line 4: Line 4:


Name of the function that is called when the item is clicked. The function is expected to be in 'UseScript' file. There is one parameter passed to the function - this menu item ([[SDBMenuItem]] object).
Name of the function that is called when the item is clicked. The function is expected to be in 'UseScript' file. There is one parameter passed to the function - this menu item ([[SDBMenuItem]] object).
===Comments===
This property has been supplanted by the [[ISDBScriptControl::RegisterEvent]] method.


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

Revision as of 01:57, 7 October 2007

CoClass SDBMenuItem, Interface ISDBMenuItem

Property Get/Let OnClickFunc As String


Property description

Name of the function that is called when the item is clicked. The function is expected to be in 'UseScript' file. There is one parameter passed to the function - this menu item (SDBMenuItem object).

Comments

This property has been supplanted by the ISDBScriptControl::RegisterEvent method.

Example code

'The function to be called can look like:

Sub OnMenuItemClick( Item)
  ' Some code here
End Sub