12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using FastReport.Table;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Text;
- namespace FastReport.Web
- {
- public static partial class Extensions
- {
- public static void FindClickedObject<T>(
- this Report Report,
- string objectName,
- int pageN,
- float left,
- float top,
- Action<T, ReportPage, int> action
- )
- where T : ComponentBase
- {
- if (Report.PreparedPages == null)
- return;
- bool found = false;
- while (pageN < Report.PreparedPages.Count && !found)
- {
- ReportPage page = Report.PreparedPages.GetPage(pageN);
- if (page != null)
- {
- ObjectCollection allObjects = page.AllObjects;
- var point = new System.Drawing.PointF(left + 1, top + 1);
- foreach (Base obj in allObjects)
- {
- if (obj is ReportComponentBase)
- {
- ReportComponentBase c = obj as ReportComponentBase;
- if (c is TableBase)
- {
- TableBase table = c as TableBase;
- for (int i = 0; i < table.RowCount; i++)
- {
- for (int j = 0; j < table.ColumnCount; j++)
- {
- TableCell textcell = table[j, i];
- if (textcell.Name == objectName)
- {
- RectangleF rect = new RectangleF(table.Columns[j].AbsLeft,
- table.Rows[i].AbsTop,
- textcell.Width,
- textcell.Height);
- if (rect.Contains(point))
- {
- action(textcell as T, page, pageN);
- found = true;
- break;
- }
- }
- }
- if (found)
- break;
- }
- }
- else if (c is T)
- {
- if (c.Name == objectName && c.AbsBounds.Contains(point))
- {
- action(c as T, page, pageN);
- found = true;
- break;
- }
- }
- if (found)
- break;
- }
- }
- page.Dispose();
- pageN++;
- }
- }
- }
- }
- }
|