How do I update a view on a drawing through iLogic?

I am trying to have a view update based on inputs into a form. I have a form that has values linked to the parameters in the part file that is displayed on the drawing. When I go to change the parameters through the form, it will either update part of the parameters necessary or none of it at all. What I have to do is right click on the view and update model every time I make a change. I didn't know if there was a command like the .UpdateAfterChange command or something that I could use to simultaneously update the view when I use the form.

1 Answer

Hoi Alex,

ILOgic:
Parameter.UpdateAfterChange = True

VBA
Dim oDoc As PartDocument
Set oDoc = ThisApplication.ActiveDocument
oDoc.Update

http://help.autodesk.com/view/INVNTOR/2020/ENU/?guid=GUID-6B4885C8-7E75-4FEA-8DEF-EA7D40F33EB3
Greetings,

Danny