ClickedEventHandler Delegate
Represents the method that will handle the Clicked event of a Button control.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public Delegate Sub ClickedEventHandler ( _
sender As Object, _
e As ClickedEventArgs _
)
'Usage
Dim instance As New ClickedEventHandler(AddressOf HandlerMethod)
public delegate void ClickedEventHandler(
Object sender,
ClickedEventArgs e
)
Parameters
sender
Type: System.ObjectThe source of the event.
e
Type: Microsoft.Office.InfoPath.ClickedEventArgsA ClickedEventArgs object that contains the event data.
Remarks
The code skeleton for an event handler associated with the Clicked event, which uses the ClickedEventHandler delegate, should be added only from the Microsoft InfoPath 2010 user interface. For more information on how to add event handlers in InfoPath, see How to: Add an Event Handler.
Examples
For an example of using the ClickedEventHandler delegate, see the sample code in the Clicked event of the ButtonEvent class.