I was looking at the Pack-and-Go example on how to check if the equation is linked to the file.
for (i = 0; i <= nCount - 1; i++)
{
Debug.Print(" Equation #" + i + " = " + swEqnMgr.get_Equation(i));
eqnLinked = swEqnMgr.LinkToFile;
}
Now, my question is: if you get the equation through the Index, why is LinkToFile only at the Equation Manager level?
Should this be at the "Equation" Level?
As you can tell from the Equation editor in Solidworks, you can set each equation with a LinkToFile.
Is there any way to do swEqnMgr.LinkToFile(i)?
Does anyone have an example of getting each LinkToFile at the equation level?