Click or drag to resize
KaxToolBarButtonEventHandler Delegate
Represents the method that handles the ButtonDataBound event of a KaxToolBar control.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public delegate void KaxToolBarButtonEventHandler(
	Object sender,
	KaxToolBarButtonEventArgs e
)

Parameters

sender
Type: SystemObject
The source of the event.
e
Type: Kettic.AspNet.ControlsKaxToolBarButtonEventArgs
A KaxToolBarButtonEventArgs that contains the event data.
Remarks
When you create a KaxToolBarButtonEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.
See Also