Class FRMouseEventArgs
Provides a data for mouse events.
Inheritance
System.Object
FRMouseEventArgs
Namespace: FastReport.Utils
Assembly: FastReport.dll
Syntax
public class FRMouseEventArgs
Fields
activeObject
Active object that handles the mouse event.
Declaration
public ComponentBase activeObject
Field Value
Type | Description |
---|---|
ComponentBase |
button
Current state of mouse buttons.
Declaration
public MouseButtons button
Field Value
Type | Description |
---|---|
System.Windows.Forms.MouseButtons |
cursor
Current cursor shape.
Declaration
public Cursor cursor
Field Value
Type | Description |
---|---|
System.Windows.Forms.Cursor |
data
Additional data supplied and handled by report objects.
Declaration
public object data
Field Value
Type | Description |
---|---|
System.Object |
delta
The delta of the mouse movement.
Declaration
public PointF delta
Field Value
Type | Description |
---|---|
System.Drawing.PointF |
dragMessage
The message to show when drag source is over the object.
Declaration
public string dragMessage
Field Value
Type | Description |
---|---|
System.String |
dragSources
Multiple sources objects of drag-drop operation.
Declaration
public ComponentBase[] dragSources
Field Value
Type | Description |
---|---|
ComponentBase[] |
dragTarget
The target object of drag-drop operation.
Declaration
public ComponentBase dragTarget
Field Value
Type | Description |
---|---|
ComponentBase |
handled
Indicates that current object was handled the mouse message.
Declaration
public bool handled
Field Value
Type | Description |
---|---|
System.Boolean |
mode
Additional mode of the designer's workspace.
Declaration
public WorkspaceMode2 mode
Field Value
Type | Description |
---|---|
WorkspaceMode2 |
modifierKeys
Current keyboard state.
Declaration
public Keys modifierKeys
Field Value
Type | Description |
---|---|
System.Windows.Forms.Keys |
selectionRect
Current selection rectangle if mode is set to SelectionRect.
Declaration
public RectangleF selectionRect
Field Value
Type | Description |
---|---|
System.Drawing.RectangleF |
sizingPoint
Current sizing point if Mode is set to Size.
Declaration
public SizingPoint sizingPoint
Field Value
Type | Description |
---|---|
SizingPoint |
wheelDelta
The mouse wheel delta.
Declaration
public int wheelDelta
Field Value
Type | Description |
---|---|
System.Int32 |
x
The X mouse coordinate.
Declaration
public float x
Field Value
Type | Description |
---|---|
System.Single |
y
The Y mouse coordinate.
Declaration
public float y
Field Value
Type | Description |
---|---|
System.Single |
Properties
DragSource
The source object of drag-drop operation.
Declaration
public ComponentBase DragSource { get; set; }
Property Value
Type | Description |
---|---|
ComponentBase |