Progress® Telerik® Reporting R1 2021
ReportViewerBase.InteractiveActionEnter Event
Occurs when the mouse cursor enters 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_InteractiveActionEnter(object sender, Telerik.ReportViewer.Common.InteractiveActionEventArgs args) { var strB = new System.Text.StringBuilder(); strB.AppendLine("You have just entered an action area."); strB.AppendLine("Action type: " + args.Action.GetType().Name); strB.AppendLine("ReportItem name: " + args.Action.ReportItemName); strB.AppendLine(string.Format("Mouse cursor position: {0}; Item bounds: {1}", args.CursorPos, args.Bounds)); Console.Out.WriteLine(strB.ToString()); }
Version Information
Supported in: 1.0.1