Parameters
- category
- The category of operation to redo.
Return Value
A task that represents the work queued to execute in the ThreadPool.
// Demonstrates how to undo and redo the most recent operation using the map's operation manager. //undo if (activeMap.OperationManager.CanUndo) activeMap.OperationManager?.UndoAsync();//await as needed //redo if (MapView.Active.Map.OperationManager.CanRedo) activeMap.OperationManager?.RedoAsync();//await as needed }
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)