The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
Is there a grid property that lets me get the absolute (not relative to the grid) pixel-position of a given row within the current window? (Current cell''s row is good enough). Basically the reverse of the PointToRowCol function?
Thanks.
ADAdministrator Syncfusion Team July 23, 2004 04:48 AM
Here is some code to try to see if this is what you want.
Point gridPoint = this.gridControl1.ViewLayout.RowColToPoint(someRow, someCol, false);
Point screenPoint = this.gridControl1.PointToScreen(gridPoint);
Console.WriteLine("{0} {1}", gridPoint, screenPoint);