Dundas Chart for Windows Forms
Chart.CursorEventHandler Delegate
See Also  Send comments on this topic.
DundasWinChart Assembly > Dundas.Charting.WinControl Namespace : Chart.CursorEventHandler Delegate


sender
The sender of the event.  The type is always the root Chart object.
e
A CursorEventArgs object, used to determine what ChartArea and Axis objects the event is being raised for, as well as resetting the cursor and selected range positions.
Represents the method that will handle the CursorPositionChangedCursorPositionChanging, SelectionRangeChanging and SelectionRangeChanged events of the root Chart object.
Cursor event handler delegate

Syntax

Visual Basic (Declaration)  
Public Delegate Sub Chart.CursorEventHandler( _
   ByVal sender As Object, _
   ByVal e As CursorEventArgs _
) 
Visual Basic (Usage) Copy Code
Dim instance As New CursorEventHandler(AddressOf HandlerMethod)
C#  
public delegate void Chart.CursorEventHandler( 
   object sender,
   CursorEventArgs e
)

Parameters

sender
The sender of the event.  The type is always the root Chart object.
e
A CursorEventArgs object, used to determine what ChartArea and Axis objects the event is being raised for, as well as resetting the cursor and selected range positions.

Remarks

The declaration of your event handler must have the same parameters as the CursorEventHandler delegate declaration.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2009 All Rights Reserved.