Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PrintControl.BrickUp Event

OBSOLETE

The BrickUp event is obsolete now. Use the BrickMouseUp event instead.

Occurs when the mouse pointer is over the region specified by a brick within the PrintControl and the mouse button is released.

Namespace: DevExpress.XtraPrinting.Control

Assembly: DevExpress.XtraPrinting.v24.2.dll

NuGet Package: DevExpress.Win.Printing

#Declaration

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

#Event Data

The BrickUp 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.

See Also