Message 1 of 6

Not applicable
09-08-2015
08:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Here's the proccess we want to accomplish:
iLogic rule to Modify iPart factory table - DONE
If anyone is interested, Here's the code used to change values in the iPart table.
' Rule to Change iPart table from iPart File Dim oDoc As PartDocument = ThisDoc.Document Dim oDef As PartComponentDefinition = oDoc.ComponentDefinition Dim initRowIndex As Integer Dim oFactory As iPartFactory = oDef.iPartFactory ' Edit rows 1 and 2, assign values to column 3 in table oFactory.TableRows.Item(1).Item(3).Value = 1119 oFactory.TableRows.Item(2).Item(3).Value = 2229
iLogic rule to reGenerate files to reflect changes - HOW?
currently we use this method, but we would to automate this using iLogic
So it will update the referenced file when an update has been made to the specific table row.
I have heard that iLogic and iParts don't mix, however it seems to be the easiest solution to progate changes from a master design to several unique versions.
Any advice is greatly appreciated.
Cheers,
Ben
Solved! Go to Solution.