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