IVsLinkedUndoClient.OnInterveningUnitBlockingLinkedUndo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that the undo manager is blocking another undo manager from executing a linked action.
public:
int OnInterveningUnitBlockingLinkedUndo();
public:
int OnInterveningUnitBlockingLinkedUndo();
int OnInterveningUnitBlockingLinkedUndo();
public int OnInterveningUnitBlockingLinkedUndo ();
abstract member OnInterveningUnitBlockingLinkedUndo : unit -> int
Public Function OnInterveningUnitBlockingLinkedUndo () As Integer
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsLinkedUndoClient::OnInterveningUnitBlockingLinkedUndo();
This method is called when an undo manager has a non-linked action on top of its undo or redo stack that is blocking another undo manager from executing its linked action. If possible, do the following in response to this call:
Activate a window with a view on the corresponding data using the undo manager.
Put up a message box with the provided localized error string or put up your own custom UI.
If you complete these actions, return S_OK. Otherwise, return E_FAIL, which causes the undo to fail and break all transaction links to that document.