web-apps/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm

53 lines
4.5 KiB
HTML
Raw Normal View History

2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Copy/paste text passages, undo/redo your actions</title>
<meta charset="utf-8" />
<meta name="description" content="Perform the basic operations with the document text: copy, paste, undo, redo" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
2016-03-11 00:48:53 +00:00
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
2016-03-11 00:48:53 +00:00
<h1>Copy/paste text passages, undo/redo your actions</h1>
2017-08-10 10:05:49 +00:00
<h3>Use basic clipboard operations</h3>
2017-09-20 08:31:59 +00:00
<p>To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) within the current document use the corresponding options from the right-click menu or icons available at any tab of the top toolbar:</p>
2016-03-11 00:48:53 +00:00
<ul>
<li><b>Cut</b> select a text fragment or an object and use the <b>Cut</b> option from the right-click menu to delete the selection and send it to the computer clipboard memory. The cut data can be later inserted to another place in the same document.</li>
<li><b>Copy</b> select a text fragment or an object and use the <b>Copy</b> option from the right-click menu, or the <b>Copy</b> <img alt="Copy icon" src="../images/copy.png" /> icon at the top toolbar to copy the selection to the computer clipboard memory. The copied data can be later inserted to another place in the same document.</li>
<li><b>Paste</b> find the place in your document where you need to paste the previously copied text fragment/object and use the <b>Paste</b> option from the right-click menu, or the <b>Paste</b> <img alt="Paste icon" src="../images/paste.png" /> icon at the top toolbar.
The text/object will be inserted at the current cursor position. The data can be previously copied from the same document.</li>
</ul>
<p>To copy or paste data from/into another document or some other program use the following key combinations:</p>
<ul>
<li><b>Ctrl+X</b> key combination for cutting;</li>
<li><b>Ctrl+C</b> key combination for copying;</li>
<li><b>Ctrl+V</b> key combination for pasting.</li>
</ul>
<p class="note"><b>Note</b>: instead of cutting and pasting text within the same document you can just select the necessary text passage and drag and drop it to the necessary position.</p>
2017-08-10 10:05:49 +00:00
<h3>Use the Paste Special feature</h3>
<p>Once the copied text is pasted, the <b>Paste Special</b> <img alt="Paste Special" src="../images/pastespecialbutton.png" /> button appears next to the inserted text passage. Click this button to select the necessary paste option. </p>
<p>When pasting the paragraph text or some text within autoshapes, the following options are available:</p>
<ul>
<li><em>Paste</em> - allows to paste the copied text keeping its original formatting.</li>
<li><em>Keep text only</em> - allows to paste the text without its original formatting.</li>
</ul>
<p>If you paste the copied table into an existing table, the following options are available:</p>
<ul>
<li><em>Overwrite cells</em> - allows to replace the existing table contents with the pasted data. This option is selected by default.</li>
<li><em>Nest table</em> - allows to paste the copied table as a nested table into the selected cell of the existing table.</li>
<li><em>Keep text only</em> - allows to paste the table contents as text values separated by the tab character.</li>
</ul>
2017-08-10 10:05:49 +00:00
<h3>Undo/redo your actions</h3>
2017-09-20 08:31:59 +00:00
<p>To perform the undo/redo operations, use the corresponding icons available at any tab of the top toolbar or keyboard shortcuts:</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 at the top toolbar or the <b>Ctrl+Z</b> key combination 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 at the top toolbar or the <b>Ctrl+Y</b> key combination to redo the last undone operation.</li>
</ul>
</div>
</body>
</html>