My VSTO application is a C# Add-In. I would like to add some undo(Ctrl +z) and redo functionality(Ctrl +Y).
Asked
Active
Viewed 2,477 times
2 Answers
1
Is this what you're looking for?
Globals.ThisAddIn.Application.Undo()
Globals.ThisAddIn.Application.Repeat()

Peter Majeed
- 5,304
- 2
- 32
- 57

code4life
- 15,655
- 7
- 50
- 82
0
I've used a hidden document in conjunction with Range.WordOpenXML/.InsertXML with good success in Word. I can't say how well it would work with Excel. Here is my previous answer with some code samples.

Community
- 1
- 1

Michael Regan
- 1,568
- 16
- 17
-
I will if this idea is applicable to Excel – mas_oz2k1 Oct 26 '09 at 03:29