Skip to main content
All docs
V18.2

ASPxClientWebDocumentViewerBeforeRenderEventHandler Delegate

A method that will handle the ASPxClientWebDocumentViewer.BeforeRender event.

Namespace: DevExpress.XtraReports.Web.Scripts

Assembly: DevExpress.XtraReports.v18.2.Web.Scripts.dll

Declaration

public delegate void ASPxClientWebDocumentViewerBeforeRenderEventHandler(
    object source,
    object previewModel
);

Parameters

Name Type Description
source Object

The event sender.

previewModel Object

A client-side Document Viewer model.

Remarks

When creating a ASPxClientWebDocumentViewerBeforeRenderEventHandler delegate, identify a method that will handle corresponding events.

To associate an event with an event handler, add a delegate instance to the event.

The event handler is called whenever the event occurs, unless the delegate is removed.

To learn more, see the Events and Delegates topic in MSDN.

See Also