Gets the position in section coordinates (twips, relative to the top of the section).
Namespace:
C1.Win.C1ReportDesignerAssembly: C1.Win.C1ReportDesigner.2 (in C1.Win.C1ReportDesigner.2.dll)
Syntax
Remarks
This value takes into account the current scroll position.
Examples
The code below takes a point in client coordinates and obains the y position relative to
the section at that point.
Copy CodeC#
HitTestInfo hti = c1rd.HitTest(clientX, clientY); double sectionY = hti.SectionY; // y position in section coordinates (in twips) |