iLogic save function

k.grigoriou
Enthusiast
Enthusiast

iLogic save function

k.grigoriou
Enthusiast
Enthusiast

Hi i try to find a solution i have one rule and i want in the end off the rule to save the part

0 Likes
Reply
Accepted solutions (1)
181 Views
1 Reply
Reply (1)

Curtis_Waguespack
Consultant
Consultant
Accepted solution

Hi @k.grigoriou , you can use one of these.

 

ThisDoc.Document.Save

 

ThisDoc.Document.SaveAs("C:\Temp\BestPartEver.ipt", False) 'saves it as the specified path & name

 

ThisDoc.Document.SaveAs("C:\Temp\BestPartEver2.ipt", True) 'saves it out as copy, keeps the original open

 

EESignature