summaryrefslogtreecommitdiff
path: root/source/text/shared/04/01010000.xhp
blob: fab8da869e11bc03badfe2f0f360247ce763c2d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
	
<!--
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 -->
 
	
<meta>
      <topic id="textshared0401010000xml" indexer="include">
         <title xml-lang="en-US" id="tit">General Shortcut Keys in $[officename]</title>
         <filename>/text/shared/04/01010000.xhp</filename>
      </topic>
   </meta>
   <body>
      <section id="allgemeine">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149991"><bookmark_value>keyboard;general commands</bookmark_value>
         <bookmark_value>shortcut keys;general</bookmark_value>
         <bookmark_value>text input fields</bookmark_value>
         <bookmark_value>AutoComplete function in text and list boxes</bookmark_value>
         <bookmark_value>macros; interrupting</bookmark_value>
</bookmark>
<paragraph xml-lang="en-US" id="hd_id3149991" role="heading" level="1"><variable id="common_keys"><link href="text/shared/04/01010000.xhp" name="General Shortcut Keys in $[officename]">General Shortcut Keys in $[officename]</link>
</variable></paragraph>
      </section>
      <embed href="text/shared/00/00000099.xhp#keys"/>
      <paragraph xml-lang="en-US" id="hd_id3150702" role="heading" level="2">Using Shortcut Keys</paragraph>
      <paragraph xml-lang="en-US" id="par_id3151299" role="paragraph">A great deal of your application's functionality can be called up by using shortcut keys. For example, the <switchinline select="sys"><caseinline select="MAC">Command+O
</caseinline><defaultinline>Ctrl+O</defaultinline></switchinline> shortcut keys are shown next to the <emph>Open</emph> entry in the <emph>File</emph> menu. If you want to access this function by using the shortcut keys, press and hold down <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and then press the O key. Release both keys after the dialog appears.</paragraph>
      <paragraph xml-lang="en-US" id="par_id3153894" role="paragraph">When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available.</paragraph>
      <paragraph xml-lang="en-US" id="hd_id3154186" role="heading" level="2"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Calling Menus With Shortcut Keys</defaultinline></switchinline></paragraph>
      <paragraph xml-lang="en-US" id="par_id3152425" role="paragraph"><switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>Some of the characters shown on the menu bar are underlined. You can access these menus directly by pressing the underlined character together with the ALT key. Once the menu is opened, you will again find underlined characters. You can access these menu items directly by simply pressing the underlined character key.</defaultinline></switchinline></paragraph>
      <paragraph xml-lang="en-US" id="hd_id3156410" role="heading" level="2">Using Shortcut Keys to Control Dialogs</paragraph>
      <paragraph xml-lang="en-US" id="par_id3154288" role="paragraph">There is always one element highlighted in any given dialog - usually shown by a broken frame. This element, which can be either a button, an option field, an entry in a list box or a check box, is said to have the focus on it. If the focal point is a button, pressing Enter runs it as if you had clicked it. A check box is toggled by pressing the spacebar. If an option field has the focus, use the arrow keys to change the activated option field in that area. Use the Tab key to go from one element or area to the next one, use Shift+Tab to go in the reverse direction.</paragraph>
      <paragraph xml-lang="en-US" id="par_id3149177" role="paragraph">Pressing ESC closes the dialog without saving changes. <switchinline select="sys"><caseinline select="MAC">
</caseinline><defaultinline>If you place the focus on a button, not only will you see the dotted line framing the name of the button, but also a thicker shadow under the button selected. This indicates that if you exit the dialog by pressing the Enter key, it is the equivalent of pressing that button itself.</defaultinline></switchinline></paragraph>
      <paragraph xml-lang="en-US" id="hd_id3147209" role="heading" level="2">Shortcut Keys for Mouse Actions</paragraph>
      <paragraph xml-lang="en-US" id="par_id3154749" role="paragraph">If you are using drag-and-drop, selecting with the mouse or clicking objects and names, you can use the keys Shift, <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and occasionally <switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline> to access additional functionality. The modified functions available when holding down keys during drag-and-drop are indicated by the mouse pointer changing form. When selecting files or other objects, the modifier keys can extend the selection - the functions are explained where applicable. <switchinline select="sys"><caseinline select="UNIX"><embedvar href="text/shared/00/00000099.xhp#winmanager"/>
</caseinline></switchinline></paragraph>
      <paragraph xml-lang="en-US" id="hd_id3154046" role="heading" level="2">Practical Text Input Fields</paragraph>
      <list type="ordered">
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3145673" role="listitem">You can open a context menu, which contains some of the most often-used commands.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3150085" role="listitem">Use the shortcut keys <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+S to open the <emph>Special Characters</emph> dialog to insert one or more special characters.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3153088" role="listitem">Use <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A to select the entire text. Use the right or left arrow key to remove the selection.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3149514" role="listitem">Double-click a word to select it.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3149785" role="listitem">A triple-click in a text input field selects the entire field. A triple-click in a text document selects the current sentence.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3150976" role="listitem">Use <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Del to delete everything from the cursor position to the end of the word.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3147264" role="listitem">By using <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and right or left arrow key, the cursor will jump from word to word; if you also hold down the Shift key, one word after the other is selected.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3154346" role="listitem">INSRT is used to switch between the insert mode and the overwrite mode and back again.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3148757" role="listitem">Drag-and-drop can be used within and outside of a text box.</paragraph>
         </listitem>
         <listitem>
            <paragraph xml-lang="en-US" id="par_id3150358" role="listitem">The <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z shortcut keys are used to undo modifications one step at a time; the text will then have the status it had before the first change.</paragraph>
         </listitem>
      </list>
      <section id="autocompurl">
         <list type="ordered">
            <listitem>
               <paragraph xml-lang="en-US" id="par_id3153968" role="listitem"> $[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select="sys"><caseinline select="WIN">c:\a 
</caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select="sys"><caseinline select="WIN">on the C: drive 
</caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter "a".</paragraph>
            </listitem>
            <listitem>
               <paragraph xml-lang="en-US" id="par_id3144760" role="listitem">Use the down arrow key to scroll through the other files and directories. Use the right arrow key to also display an existing subdirectory in the URL field. Quick AutoComplete is available if you press the End key after entering part of the URL. Once you find the document or directory you want, press Enter.</paragraph>
            </listitem>
         </list>
      </section>
      <paragraph xml-lang="en-US" id="hd_id3150767" role="heading" level="2">Interrupting Macros</paragraph>
      <paragraph xml-lang="en-US" id="par_id3159150" role="paragraph">If you want to terminate a macro that is currently running, press <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q.</paragraph>
      <paragraph xml-lang="en-US" id="hd_id3154123" role="heading" level="2">List of General Shortcut Keys in $[officename]</paragraph>
      <paragraph xml-lang="en-US" id="par_id3145421" role="paragraph">The shortcut keys are shown on the right hand side of the menu lists next to the corresponding menu command. <switchinline select="sys"><caseinline select="MAC">(Not all of the mentioned keys for controlling dialogs are available on the Macintosh.) 
</caseinline></switchinline></paragraph>
      <paragraph xml-lang="en-US" id="hd_id31541231" role="heading" level="3">Shortcut keys for controlling dialogs</paragraph>
      <table id="tbl_id3555101">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153367" role="tablehead">Shortcut Keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3156060" role="tablehead"><emph>Effect</emph></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149260" role="tablecontent">Enter key</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153727" role="tablecontent">Activates the focused button in a dialog</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153142" role="tablecontent">Esc</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3155412" role="tablecontent">Terminates the action or dialog. If in $[officename] Help: goes up one level.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3151118" role="tablecontent">Spacebar</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3147435" role="tablecontent">Toggles the focused check box in a dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3152791" role="tablecontent">Arrow keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3151113" role="tablecontent">Changes the active control field in an option section of a dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154188" role="tablecontent">Tab</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3146975" role="tablecontent">Advances focus to the next section or element in a dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153363" role="tablecontent">Shift+Tab</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149665" role="tablecontent">Moves the focus to the previous section or element in a dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3147317" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153224" role="tablecontent">Opens the list of the control field currently selected in a dialog. These shortcut keys apply not only to combo boxes but also to icon buttons with pop-up menus. Close an opened list by pressing the Escape key.</paragraph>
            </tablecell>
         </tablerow>
      </table>
      <paragraph xml-lang="en-US" id="hd_id31541232" role="heading" level="3">Shortcut keys for controlling documents and windows</paragraph>
      <table id="tbl_id3555102">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id31533671" role="tablehead">Shortcut Keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id31560601" role="tablehead"><emph>Effect</emph></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3156437" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149123" role="tablecontent">Opens a document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3155064" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150749" role="tablecontent">Saves the current document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3156377" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3155764" role="tablecontent">Creates a new document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3151357" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148408" role="tablecontent">Opens the <emph>Templates</emph> dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3150043" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3147100" role="tablecontent">Prints document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3158474" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150091" role="tablecontent">Activates the <emph>Find</emph> toolbar.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3158414" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150090" role="tablecontent">Calls the <emph>Find &amp; Replace</emph> dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148800" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149527" role="tablecontent">Searches for the last entered search term.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154198" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>Ctrl+Shift+J</defaultinline></switchinline></paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150567" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>Toggles the view between fullscreen mode and normal mode in Writer or Calc</defaultinline></switchinline></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3151049" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+R</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148462" role="tablecontent">Redraws the document view.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149035" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+I</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150665" role="tablecontent">Enable or disable the selection cursor in read-only text.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149404" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>F1</defaultinline></switchinline></paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3145410" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>Starts the $[officename] Help</defaultinline></switchinline></paragraph>
               <paragraph xml-lang="en-US" id="par_id3153697" role="tablecontent">In the $[officename] Help: jumps to main help page.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154951" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>Shift+F1</defaultinline></switchinline></paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153309" role="tablecontent"><switchinline select="sys"><caseinline select="MAC"></caseinline><defaultinline>Context Help</defaultinline></switchinline></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3159220" role="tablecontent">Shift+F2</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3151241" role="tablecontent">Turns on Extended Tips for the currently selected command, icon or control.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154532" role="tablecontent">F6</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3144506" role="tablecontent">Sets focus in next subwindow (for example, document/data source view)</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3144771" role="tablecontent">Shift+F6</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3147075" role="tablecontent">Sets focus in previous subwindow.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3156191" role="tablecontent">F10</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3156172" role="tablecontent">Activates the first menu (File menu)</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3159093" role="tablecontent">Shift+F10</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148606" role="tablecontent">Opens the context menu.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3146871" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4 or <switchinline select="sys"><caseinline select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F4</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3157978" role="tablecontent">Closes the current document (close $[officename] when the last open document is closed)</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149258" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153966" role="tablecontent">Exits application.</paragraph>
            </tablecell>
         </tablerow>
      </table>
      <paragraph xml-lang="en-US" id="hd_id31541233" role="heading" level="3">Shortcut keys for editing or formatting documents</paragraph>
      <table id="tbl_id3555103">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id31533672" role="tablehead">Shortcut Keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id31560602" role="tablehead"><emph>Effect</emph></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149488" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149912" role="tablecontent">When positioned at the start of a header, a tab is inserted.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148573" role="tablecontent">Enter (if an OLE object is selected)</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3154162" role="tablecontent">Activates the selected OLE object.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3146990" role="tablecontent">Enter (if a drawing object or text object is selected)</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153839" role="tablecontent">Activates text input mode.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153538" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3166450" role="tablecontent">Cuts out the selected elements.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3155904" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148537" role="tablecontent">Copies the selected items.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3156318" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3147005" role="tablecontent">Pastes from the clipboard.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id071620091225295" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+V</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id0716200912253022" role="tablecontent">Pastes unformatted text from the clipboard. The text is pasted using the format that exists at the insertion point.<comment>CWS mox01</comment></paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN10F47" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+V</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN10F4B" role="tablecontent">Opens the <emph>Paste Special</emph> dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153789" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3155581" role="tablecontent">Selects all.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149738" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149816" role="tablecontent">Undoes last action.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3147095" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command+Shift+Z</caseinline><defaultinline>Ctrl+Y</defaultinline></switchinline></paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150345" role="tablecontent">Redoes last action.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id7297280" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Y</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id8709677" role="tablecontent">Repeats last command.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3145588" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148753" role="tablecontent">The <emph>Italic</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also marked in italic.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3166428" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+B</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150490" role="tablecontent">The <emph>Bold</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also put in bold.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154815" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153228" role="tablecontent">The <emph>Underlined</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also underlined.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN10BC0" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">⌃M</caseinline><defaultinline>Ctrl+M</defaultinline></switchinline></paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN10BE8" role="tablecontent">Removes direct formatting from selected text or objects (as in <emph>Format - Clear Direct Formatting</emph>)</paragraph>
            </tablecell>
         </tablerow>
      </table>
      <paragraph xml-lang="en-US" id="hd_id3153288" role="heading" level="2">Shortcut keys in the Gallery</paragraph>
      <table id="tbl_id310678">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3156308" role="tablehead">Shortcut keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149440" role="tablehead">Result</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149971" role="tablecontent">Tab</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153110" role="tablecontent">Moves between areas.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148971" role="tablecontent">Shift+Tab</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3154059" role="tablecontent">Moves between areas (backwards)</paragraph>
            </tablecell>
         </tablerow>
      </table>

      <paragraph xml-lang="en-US" id="hd_id3152368" role="heading" level="2">Shortcut keys in the New Theme area of the Gallery:</paragraph>
      <table id="tbl_id8934598">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN11555" role="tablehead">Shortcut keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN1155B" role="tablehead">Result</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3159192" role="tablecontent">Up Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3152540" role="tablecontent">Moves the selection up one.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3150892" role="tablecontent">Down Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3151004" role="tablecontent">Moves the selection down.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153976" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3146894" role="tablecontent">Opens the Properties dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148652" role="tablecontent">Shift+F10</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153250" role="tablecontent">Opens a context menu.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3155614" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+U</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150099" role="tablecontent">Refreshes the selected theme.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3145755" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+R</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3146776" role="tablecontent">Opens the <emph>Enter Title</emph> dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154642" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153653" role="tablecontent">Deletes the selected theme.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3155946" role="tablecontent">Insert</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3145372" role="tablecontent">Inserts a new theme</paragraph>
            </tablecell>
         </tablerow>
      </table>

      <paragraph xml-lang="en-US" id="hd_id3150633" role="heading" level="2">Shortcut keys in the Gallery preview area:</paragraph>
      <table id="tbl_id9288308">
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN116D6" role="tablehead">Shortcut keys</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_idN116DC" role="tablehead">Result</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149343" role="tablecontent">Home</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153241" role="tablecontent">Jumps to the first entry.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148809" role="tablecontent">End</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3148902" role="tablecontent">Jumps to the last entry.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3149382" role="tablecontent">Left Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150048" role="tablecontent">Selects the next Gallery element on the left.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3152926" role="tablecontent">Right Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153802" role="tablecontent">Selects the next Gallery element on the right.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3150776" role="tablecontent">Up Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3149800" role="tablecontent">Selects the next Gallery element above.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3147517" role="tablecontent">Down Arrow</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3151223" role="tablecontent">Selects the next Gallery element below.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3145602" role="tablecontent">Page Up</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3147081" role="tablecontent">Scroll up one screen.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3153045" role="tablecontent">Page Down</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3150411" role="tablecontent">Scroll down one screen.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3147278" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Insert</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153614" role="tablecontent">Inserts the selected object as a linked object into the current document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3155345" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+I</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153608" role="tablecontent">Inserts a copy of the selected object into the current document.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3143278" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+T</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3156370" role="tablecontent">Opens the <emph>Enter Title</emph> dialog.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3145114" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3146107" role="tablecontent">Switches between themes view and object view.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3147552" role="tablecontent">Spacebar</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3145324" role="tablecontent">Switches between themes view and object view.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3148978" role="tablecontent">Enter</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3155743" role="tablecontent">Switches between themes view and object view.</paragraph>
            </tablecell>
         </tablerow>
         <tablerow>
            <tablecell>
               <paragraph xml-lang="en-US" id="hd_id3154108" role="tablecontent">Step backward (only in object view)</paragraph>
            </tablecell>
            <tablecell>
               <paragraph xml-lang="en-US" id="par_id3153294" role="tablecontent">Switches back to main overview.</paragraph>
            </tablecell>
         </tablerow>
      </table>

      <section id="dbtable">
         <paragraph xml-lang="en-US" id="hd_id3149722" role="heading" level="2">Selecting Rows and Columns in a Database Table (opened by F4)</paragraph>
         <table id="tbl_id1178319">
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_idN11906" role="tablehead">Shortcut keys</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_idN1190C" role="tablehead">Result</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3150963" role="tablecontent">Spacebar</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3146883" role="tablecontent">Toggles row selection, except when the row is in edit mode.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3149787" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Spacebar</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3149028" role="tablecontent">Toggles row selection</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3147482" role="tablecontent">Shift+Spacebar</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3149319" role="tablecontent">Selects the current column</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id1418805" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id1743522" role="tablecontent">Moves pointer to the first row</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id5994140" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id7870113" role="tablecontent">Moves pointer to the last row</paragraph>
               </tablecell>
            </tablerow>
         </table>

      </section>
      <section id="zeichenobjekte">
         <paragraph xml-lang="en-US" id="hd_id3147411" role="heading" level="2">Shortcut Keys for Drawing Objects</paragraph>
         <table id="tbl_id1152073">
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_idN1199F" role="tablehead">Shortcut keys</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_idN119A5" role="tablehead">Result</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3149684" role="tablecontent">Select the toolbar with F6. Use the Down Arrow and Right Arrow to select the desired toolbar icon and press <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3155994" role="tablecontent">Inserts a Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3150264" role="tablecontent">Select the document with <switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 and press Tab</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3154055" role="tablecontent">Selects a Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3149242" role="tablecontent">Tab</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3157902" role="tablecontent">Selects the next Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3149349" role="tablecontent">Shift+Tab</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3150836" role="tablecontent">Selects the previous Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3109846" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3154276" role="tablecontent">Selects the first Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3145829" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3161664" role="tablecontent">Selects the last Drawing Object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3153099" role="tablecontent">Esc</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3149009" role="tablecontent">Ends Drawing Object selection.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3156271" role="tablecontent">Esc (in Handle Selection Mode)</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3152818" role="tablecontent">Exit Handle Selection Mode and return to Object Selection Mode.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3151258" role="tablecontent">Up/Down/Left/Right Arrow</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3159162" role="tablecontent">Move the selected point (the snap-to-grid functions are temporarily disabled, but end points still snap to each other).</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3146874" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up/Down/Left/Right Arrow</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3144422" role="tablecontent">Moves the selected Drawing Object one pixel (in Selection Mode)</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3153386" role="tablecontent">Re-sizes a Drawing Object (in Handle Selection Mode)</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3145306" role="tablecontent">Rotates a Drawing Object (in Rotation Mode)</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3159244" role="tablecontent">Opens the properties dialog for a Drawing Object.</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3150763" role="tablecontent">Activates the Point Selection mode for the selected drawing object.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3153580" role="tablecontent">Spacebar</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3153053" role="tablecontent">Select a point of a drawing object (in Point Selection mode) / Cancel selection.</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3145629" role="tablecontent">The selected point blinks once per second.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3148624" role="tablecontent">Shift+Spacebar</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3154842" role="tablecontent">Select an additional point in Point Selection mode.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3147424" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3152955" role="tablecontent">Select the next point of the drawing object (Point Selection mode)</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3149753" role="tablecontent">In Rotation mode, the center of rotation can also be selected.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3147233" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3151296" role="tablecontent">Select the previous point of the drawing object (Point Selection mode)</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3150933" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3145662" role="tablecontent">A new drawing object with default size is placed in the center of the current view.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3147563" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Command
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter at the Selection icon</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3150860" role="tablecontent">Activates the first drawing object in the document.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3154569" role="tablecontent">Esc</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3149994" role="tablecontent">Leave the Point Selection mode. The drawing object is selected afterwards.</paragraph>
                  <paragraph xml-lang="en-US" id="par_id3155512" role="tablecontent">Edit a point of a drawing object (Point Edit mode)</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="hd_id3148580" role="tablecontent">Any text or numerical key</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id3152918" role="tablecontent">If a drawing object is selected, switches to edit mode and places the cursor at the end of the text in the drawing object. A printable character is inserted.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id2693563" role="tablecontent"><switchinline select="sys"><caseinline select="MAC">Option
</caseinline><defaultinline>Alt</defaultinline></switchinline> key while creating or scaling a graphic object</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id8308969" role="tablecontent">The position of the object's center is fixed.</paragraph>
               </tablecell>
            </tablerow>
            <tablerow>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id526444" role="tablecontent">Shift key while creating or scaling a graphic object</paragraph>
               </tablecell>
               <tablecell>
                  <paragraph xml-lang="en-US" id="par_id4939725" role="tablecontent">The ratio of the object's width to height is fixed.</paragraph>
               </tablecell>
            </tablerow>
         </table>

      </section>
      <section id="relatedtopics">
         <embed href="text/shared/04/01020000.xhp#DB_keys"/>
         <embed href="text/shared/guide/keyboard.xhp#keyboard"/>
      </section>
   </body>
</helpdocument>