ISDBUIButton::OnClickFunc

From MediaMonkey Wiki
Revision as of 01:57, 7 October 2007 by Imd1b4u (talk | contribs) (Supplanted by ISDBScriptControl::RegisterEvent)
Jump to navigation Jump to search

CoClass SDBUIButton, Interface ISDBUIButton

Property Get/Let OnClickFunc As String


Property description

Name of the function that is called when the button is clicked. The function is expected to be in ISDBUIButton::UseScript file. There is one parameter passed to the function - this button (SDBUIButton object).

Comments

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

Example code

'The function to be called can look like:

Sub OnbuttonClick( Btn)
  ' Some code here
End Sub