Skip to main content
All docs
V18.2

ASPxClientPreviewClickEventArgs.Handled Property

Specifies whether or not the event was handled and no default processing is required.

Namespace: DevExpress.XtraReports.Web.Scripts

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

Declaration

public bool Handled { get; }

Property Value

Type Description
Boolean

true, if the event is completely handled by custom code and no default processing is required; otherwise, false.

Remarks

When handling the ASPxClientWebDocumentViewer.PreviewClick event, set the Handled property to true to indicate that default processing should not occur. If you set this property to false, the ASPxClientPreviewClickEventArgs.DefaultHandler function will be called after executing code in the event handler.

See Also