Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Need x/y coordinates of a particular cell

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Need x/y coordinates of a particular cell
Link Posted: 05-Oct-2006 03:54
Hi, I am inheriting from Column.  In the SetValue method, I need to get the X and Y coordinates of the current cell relative to either the grid itself or the current viewport.

How can this be done?

Thanks
Link Posted: 05-Oct-2006 04:22
[c#]
public void InvalidateCell(FlyGridViewPort port, NodeBase node, Column col)
{
  int colIndex = Array.IndexOf(port.Columns.VisibleColumns, col);
  if (colIndex != -1)//column is visible
  {
    int rowIndex = port.Rows.GetRowFromNode(node);
    if (rowIndex != -1)//node is visible
    {
       Rectangle r = port.GetRectangle(port.Bounds, colIndex, rowIndex);
       port.FlyGrid.Invalidate(r);
    }
  }
}