ISDBUIButton::OnClickFunc: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
(No difference)

Revision as of 11:02, 22 March 2007

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).

Example code

'The function to be called can look like:

Sub OnbuttonClick( Btn)
  ' Some code here
End Sub