IDocumentPreviewModel.PreviewMouseMove Event
Occurs when the mouse cursor moves over the document area in a Document Viewer.
Namespace: DevExpress.Xpf.Printing
Assembly: DevExpress.Xpf.Printing.v14.2.dll
Declaration
event EventHandler<PreviewClickEventArgs> PreviewMouseMove
Event PreviewMouseMove As EventHandler(Of PreviewClickEventArgs)
Event Data
The PreviewMouseMove event's handler receives an argument of the PreviewClickEventArgs type. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Element | Gets the element for which the corresponding event has been raised. |
| ElementTag | Gets the Tag property value of the control, for which the corresponding event has been raised. |
Remarks
Handle the IDocumentPreviewModel.PreviewClick and PreviewMouseMove events, to provide interactive capabilities to reports shown in Document Viewer (e.g. to create drill-down and drill-through reports, or enable report sorting in the Document Preview).
For a code example, see How to: Create Drill-Down Reports.
See Also