If you use context menu it will extract currently selected DCIs. You can also use "export all" option in view menu (in top right corner).
Best regards,
Victor
Best regards,
Victor
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
sub FindInterfaceByName(node, ifName)
{
foreach(i : GetNodeInterfaces(node))
{
if (i->name == ifName)
return i;
}
return null;
}
iface = FindInterfaceByName($node, "Se1/0");