Simple UNDO rule

Simple UNDO rule

Anonymous
Not applicable
2,326 Views
6 Replies
Message 1 of 7

Simple UNDO rule

Anonymous
Not applicable

Can anyone show me a code that does an UNDO in a document. Thank you guys for the replies.

0 Likes
Accepted solutions (1)
2,327 Views
6 Replies
Replies (6)
Message 2 of 7

bradeneuropeArthur
Mentor
Mentor

Hi,

 

Is Possible:



Check this:

 

Dim oTransMgr As TransactionManager
Dim m_inventorApplication as inventor.application
m_inventorApplication = thisapplication
oTransMgr = m_inventorApplication.TransactionManager Dim oTrans As Transaction oTrans = oTransMgr.StartTransactionForDocumentOpen("DEscription Of the Command") 'YOUR CODE HERE 'YOUR CODE HERE oTrans.End()

 The rule or command can now simply being undo with the undo button in Inventor or Ctrl+Z

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 7

chandra.shekar.g
Autodesk Support
Autodesk Support
Accepted solution

Hi @Anonymous,

 

Hoping that following iLogic code would help.

 

Dim oCommandMgr As CommandManager 
oCommandMgr = ThisApplication.CommandManager 

' Get control definition for the line command. 
Dim oControlDef As ControlDefinition 
 oControlDef = oCommandMgr.ControlDefinitions.Item( _ 
                                             "AppUndoCmd")  
' Execute the command. 
Call oControlDef.Execute

Please feel free to contact if there is any queries.

 

If solves problem, click on "Accept as solution" / give a "Kudo".

 

Thanks and regards,


CHANDRA SHEKAR G
Developer Advocate
Autodesk Developer Network



Message 4 of 7

bradeneuropeArthur
Mentor
Mentor
This is only the undo command from the commandmanager. But with the transactionmanager you are able to undo a specific command.

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 5 of 7

Anonymous
Not applicable

Thanks, both of you. I got what I needed.

0 Likes
Message 6 of 7

engilic
Advocate
Advocate

just use:
ThisApplication.CommandManager.ControlDefinitions.Item("CommandName").Execute

CommandName you can find here:
https://github.com/AlexFielder/iLogic/blob/master/CommandNames.txt

0 Likes
Message 7 of 7

ktelangCGFU6
Participant
Participant

Thanks this transaction handling helped me 

0 Likes