Absolute row position

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.

2 Replies

AD Administrator Syncfusion Team July 23, 2004 09:48 AM UTC

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);


LS Leon Schwartz July 23, 2004 11:53 AM UTC

That did it. Thanks!

Loader.
Up arrow icon