We are inserting content controls programmatically in word document and we don't want to add actions to the undo stack of word. The only way that we found is to access the undo commandbar-combobox and to remove the items related to inserting content control action, we are using the code below :
var commandBars = _wordDocument.CommandBars.Cast<CommandBar>();
var standardCommandBar = commandBars.First(bar => bar.Name.Equals("Standard"));
CommandBarComboBox undoControl =
standardCommandBar.Controls
.Cast<CommandBarControl>()
.First(control => control.Id == 128) as CommandBarComboBox;
undoControl.RemoveItem(1);
The last line undoControl.RemoveItem(1)
throws a ComException HRESULT E_FAIL
.
Is there any way to remove actions from the undo redo combo box?
As a result of your question, I was having the same problem as you, but now it's solved.
Your code will return the last object from the undo list. Now you can add checks based on your requirements.
Microsoft Word