Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Node's Port

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

Node's Port
Link Posted: 04-Oct-2006 10:43
Hi,
If i have a node, how can i now its viewport?
is there a difference if this is a nested grid or not?

Please Give Me An Exapmle.

Thanks,
Guy.
Link Posted: 04-Oct-2006 23:29
This example shows how to get a viewport containing a node specified:
[c#]
internal FlyGridViewPort GetPort(FlyGrid flyGrid, NodeBase node)
{
  if (node != null)
  {
    INestedRoot nestedRoot = node.Owner as INestedRoot;
    if (nestedRoot != null)
    {
      NestedGridNode holder = nestedRoot.Holder as NestedGridNode;
      if (holder != null)
      {
        return holder.NestedInternal;
      }        
    }
    return flyGrid.GetActiveRootPort;//non-nested port
  }
  return null;
}