Skip to main content

PrintControl.BrickMove Event

OBSOLETE

The BrickMove event is obsolete now. Use the BrickMouseMove event instead.

Occurs when the mouse pointer moves over the region specified by a brick within the PrintControl.

Namespace: DevExpress.XtraPrinting.Control

Assembly: DevExpress.XtraPrinting.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.Printing

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("The BrickMove event is obsolete now. Use the BrickMouseMove event instead.")]
public event BrickEventHandler BrickMove

Event Data

The BrickMove event's data class is BrickEventArgs. The following properties provide information specific to this event:

Property Description
Args Returns an object storing the event arguments.
Brick Gets a brick for which an event has been raised. Inherited from BrickEventArgsBase.
BrickScreenBounds Returns the rectangle displayed when clicking a brick.
Page Returns the document page containing the brick for which the corresponding event was fired.
X Returns the horizontal mouse position within a brick.
Y Returns the vertical mouse position within a brick.

Remarks

The BrickEventArgs.Args property contains a MouseEventArgs class instance.

Mouse events occur in the following order:

  1. BrickMove
  2. PrintControl.BrickDown
  3. PrintControl.BrickUp
See Also