Delegate ZedGraphControl.ZedMouseEventHandler
A delegate that allows notification of mouse events on Graph objects.
Namespace: ZedGraph
Assembly: ZedGraph.WinForms.dll
Syntax
public delegate bool ZedMouseEventHandler(ZedGraphControl sender, MouseEventArgs e);
Parameters
Type | Name | Description |
---|---|---|
ZedGraphControl | sender | The source ZedGraphControl object |
System.Windows.Forms.MouseEventArgs | e | A System.Windows.Forms.MouseEventArgs corresponding to this event |
Returns
Type | Description |
---|---|
System.Boolean | Return true if you have handled the mouse event entirely, and you do not want the ZedGraphControl to do any further action (e.g., starting a zoom operation). Return false if ZedGraph should go ahead and process the mouse event. |