Class ChartRegionMouseEventArgs
Argument that is to be used with chart region related mouse events.
Inheritance
System.Object
System.EventArgs
ChartRegionMouseEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class ChartRegionMouseEventArgs : EventArgs
Constructors
ChartRegionMouseEventArgs(ChartRegion, Point)
Initializes a new instance of the ChartRegionMouseEventArgs class.
Declaration
public ChartRegionMouseEventArgs(ChartRegion region, Point clickPoint)
Parameters
Type | Name | Description |
---|---|---|
ChartRegion | region | The region. |
System.Drawing.Point | clickPoint | The click point. |
ChartRegionMouseEventArgs(ChartRegion, Point, MouseButtons)
Initializes a new instance of the ChartRegionMouseEventArgs class.
Declaration
public ChartRegionMouseEventArgs(ChartRegion region, Point clickPoint, MouseButtons button)
Parameters
Type | Name | Description |
---|---|---|
ChartRegion | region | The region. |
System.Drawing.Point | clickPoint | The click point. |
System.Windows.Forms.MouseButtons | button | The button. |
Properties
Button
Gets the button.
Declaration
public MouseButtons Button { get; }
Property Value
Type | Description |
---|---|
System.Windows.Forms.MouseButtons | The button. |
Point
Gets the point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Point | The point. |
Region
Gets the region.
Declaration
public ChartRegion Region { get; }
Property Value
Type | Description |
---|---|
ChartRegion | The region. |