Progress® Telerik® Reporting R1 2021
ReportViewer.InteractiveActionLeave Event
Occurs when the mouse cursor leaves the area of a report item's action.
Namespace:
Telerik.ReportViewer.WpfAssembly: Telerik.ReportViewer.Wpf (in Telerik.ReportViewer.Wpf.dll)
Syntax
Examples
This example illustrates how to wire the event and use the event arguments
void reportViewer1_InteractiveActionLeave(object sender, Telerik.ReportViewer.Wpf.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