ITextUndoHistory.Redo(Int32) 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.
Performs the specified number of redo operation and places the transactions on the undo stack.
public:
void Redo(int count);
public:
void Redo(int count);
void Redo(int count);
public void Redo (int count);
abstract member Redo : int -> unit
Public Sub Redo (count As Integer)
Parameters
- count
- Int32
The number of redo operations to perform. At the end of the operation, the specified number of visible transactions are redone. Therefore, the actual number of transactions redone might be more than this number, if there are hidden transactions above or below the visible ones.
Remarks
After the last visible transaction is redone, the hidden transactions left on top the stack are redone as well, until a visible or linked transaction is encountered, or the stack is completely emptied.