var fDesc=new Array(); fDesc[0] = "FamilyTable.Works is a SolidWorks add-in application that offers an advanced version of the “Design Table” functionality.

It allows creating tables of variable parameters, similar to “Design Table”, but it provides more flexibility and power.

Some of the advanced features of the FamilyTable.Works are :
- ability to create multiple tables for a single model.
- handling parameters that are not supported by native SolidWorks configurations, and hence can’t be handled by the standard Design Table.
- ability to control parameters of components by a table on the assembly level.
- built-in table editor removes the requirement for having Microsoft Excel installed on the machine."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }