XRCrossTab.PreviewClick Event
In This Article
Overrides the XRControl.PreviewClick event to hide it.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v24.2.dll
NuGet Package: DevExpress.Reporting.Core
#Declaration
[Browsable(false)]
public override event PreviewMouseEventHandler PreviewClick
#Event Data
The PreviewClick event's data class is PreviewMouseEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Brick | Gets a visual brick that represents this control’s contents on a report page. |
Mouse |
Provides access to the value that specifies which mouse button has been clicked. |
Preview |
Gets the control which shows the print preview of the report for this event. |
The event data class exposes the following methods:
Method | Description |
---|---|
Get |
Obtains the location and size of the Preview |
#Remarks
This event is overridden to hide the corresponding event of the XRControl class, since the PreviewClick event is not appropriate for the XRCrossTab class.
See Also