Message 1 of 9

Not applicable
04-29-2020
02:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
I have been using an iLogic rule to change the sheet size of my drawing. After the 2021 Inventor installation it seems that I can't launch the rule thru the iLogic forms like it was possible in the 2020 version
This is the rule I have been using since. Anybody, smarter than me, have some ideas how to fix it?
If Parameter("SheetSize") = "A0" Then ActiveSheet.ChangeSize("A0", moveBorderItems := True) ElseIf Parameter("SheetSize") = "A1" Then ActiveSheet.ChangeSize("A1", moveBorderItems := True) ElseIf Parameter("SheetSize") = "A2" Then ActiveSheet.ChangeSize("A2", moveBorderItems := True) ElseIf Parameter("SheetSize") = "A3" Then ActiveSheet.ChangeSize("A3", moveBorderItems := True) ElseIf Parameter("SheetSize") = "A4" Then ActiveSheet.ChangeSize("A4", moveBorderItems := True) End If iLogicVb.UpdateWhenDone = True ThisApplication.ActiveView.Fit
Solved! Go to Solution.