2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
< html >
< head >
< title > Undo/redo your actions< / title >
< meta charset = "utf-8" / >
< meta name = "description" content = "Perform the basic operations with the spreadsheet: undo, redo" / >
< link type = "text/css" rel = "stylesheet" href = "../editor.css" / >
< script type = "text/javascript" src = "../callback.js" > < / script >
2018-01-12 14:52:45 +00:00
< script type = "text/javascript" src = "../search/js/page-search.js" > < / script >
2016-03-11 00:48:53 +00:00
< / head >
< body >
< div class = "mainpart" >
2018-01-12 14:52:45 +00:00
< div class = "search-field" >
2018-03-07 08:47:00 +00:00
< input id = "search" class = "searchBar" placeholder = "Search" type = "text" onkeypress = "doSearch(event)" >
2018-01-12 14:52:45 +00:00
< / div >
2016-03-11 00:48:53 +00:00
< h1 > Undo/redo your actions< / h1 >
2019-05-15 11:40:18 +00:00
< p > To perform the undo/redo operations, use the corresponding icons available at the left part of the editor header:< / p >
2016-03-11 00:48:53 +00:00
< ul >
< li > < b > Undo< / b > – use the < b > Undo< / b > < img alt = "Undo icon" src = "../images/undo.png" / > icon to undo the last operation you performed.< / li >
< li > < b > Redo< / b > – use the < b > Redo< / b > < img alt = "Redo icon" src = "../images/redo.png" / > icon to redo the last undone operation.< / li >
< / ul >
2019-05-15 11:40:18 +00:00
< p > The undo/redo operations can be also performed using the < a href = "../HelpfulHints/KeyboardShortcuts.htm" onclick = "onhyperlinkclick(this)" > Keyboard Shortcuts< / a > .< / p >
< p class = "note" >
< b > Note< / b > : when you co-edit a spreadsheet in the < b > Fast< / b > mode, the possibility to < b > Undo< / b > /< b > Redo< / b > the last operation is not available.
< / p >
2016-03-11 00:48:53 +00:00
< / div >
< / body >
< / html >