Click or drag to resize
KaxToolBarEventHandler Delegate
Represents the method that handles the events 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 KaxToolBarEventHandler(
	Object sender,
	KaxToolBarEventArgs e
)

Parameters

sender
Type: SystemObject
The source of the event.
e
Type: Kettic.AspNet.ControlsKaxToolBarEventArgs
A KaxToolBarEventArgs that contains the event data.
Remarks
When you create a KaxToolBarEventHandler 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