Gets the position in section coordinates (twips, relative to the left 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 x position relative to
the section at that point.
Copy CodeC#
HitTestInfo hti = c1rd.HitTest(clientX, clientY); double sectionX = hti.SectionX; // x position in section coordinates (in twips) |