Monday, July 21, 2014

The Power of ilogic Part I...

There are many people that have Inventor, but do not use Inventor to its fullest.  One item that is little known to Inventor users is ilogic.  Ilogic used to be a third party program that would integrate into Inventor and would create an programming user interface within Inventor to automate parts assemblies and the like.  Over the years it has truly developed into a powerhouse API built into Inventor.  This is the start of a 3 part series that will help us look at how to use the advantages of ilogic when dealing with the iproperties within Inventor

GoExcel.Open("C:\Users\Public\Documents\Autodesk\Inventor 2015\Templates\Projects template.xlsx", "Sheet1")
iProperties.Value("Project", "Revision Number") = GoExcel.CellValue("B8")
iProperties.Value("Summary", "Manager") = GoExcel.CellValue("B6")
iProperties.Value("Summary", "Company") = GoExcel.CellValue("B5")
iProperties.Value("Project", "Project") = GoExcel.CellValue("B1")
iProperties.Value("Project", "Engineer") = GoExcel.CellValue("B7")
iProperties.Value("Custom", "Customer") = GoExcel.CellValue("B2")
iProperties.Value("Custom", "Address1") = GoExcel.CellValue("B3")
iProperties.Value("Custom", "Address2") = GoExcel.CellValue("B4")