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.
How could I get the location of the currently selected cell? I need to display a form next to the currently selected cell. I tried
frmMyNewForm.Location = myGrid.RectangleToScreen(myGrid.RangeInfoToRectangle(myGrid.CurrentCell.RangeInfo)).Location
but thats not it...
ADAdministrator Syncfusion Team June 30, 2005 03:17 PM UTC
Does the form and the grid have the same parent?
The Location property is in the parent''s coordinate system, so you may have to call grid.RectangleToScreen and then form.Parent.RectangleToClient to get things to match.
MCMartin CyrJuly 4, 2005 01:13 PM UTC
MDI Form
|
--- Grid on the
--- Grid on the form
|
--- Grid in the grid
|
--- Cell in the grid
How can I get the cell in the grid
MCMartin CyrJuly 4, 2005 01:16 PM UTC
Here''s my hierarchy.
MDI Form
|
--- MDI Child form
|
--- Grid on the form
|
--- Grid in the grid
|
--- Cell in the grid
|
--- New form
How do I get the location of the "Cell in the grid" so that I can position the "New form" at the right coordinates?
ADAdministrator Syncfusion Team July 4, 2005 01:20 PM UTC
You need to make sure the new form has form.StartPosition = manual. Then you set its Location property in screen coordinates.