Progress® Telerik® Reporting R3 2021
ReportViewerBase.InteractiveActionLeave Event
Occurs when the mouse cursor leaves the area of a report item's action.
Namespace:
Telerik.ReportViewer.WinFormsAssembly: Telerik.ReportViewer.WinForms (in Telerik.ReportViewer.WinForms.dll)
Syntax
Examples
This example illustrates how to wire the event and use the event arguments
void reportViewer1_InteractiveActionLeave(object sender, Telerik.ReportViewer.Common.InteractiveActionEventArgs args) { var strB = new System.Text.StringBuilder(); strB.AppendLine("You have just left an action area."); strB.AppendLine("Action type: " + args.Action.GetType().Name); strB.AppendLine("ReportItem name: " + args.Action.ReportItemName); strB.AppendLine(string.Format("Item bounds: {0}", args.Bounds)); Console.Out.WriteLine(strB.ToString()); }
Version Information
Supported in: 1.0.1