summaryrefslogtreecommitdiff
path: root/source/text/shared/guide/pdf_params.xhp
blob: 54819807b058e290b93851ed4132695109231989 (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
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
<?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/.
    *
    -->
    <meta>
        <topic id="pdfcliparams" indexer="include" status="PUBLISH">
        <title id="tit">PDF CLI Parameters</title>
        <filename>/text/shared/guide/pdf_params.xhp</filename>
    </topic>
</meta>
<body>
<comment>OH: info extracted from filter/source/pdf/pdfexport.cxx</comment>
<bookmark branch="index" id="bm_id141682112838061">
    <bookmark_value>PDF;command line parameters</bookmark_value>
    <bookmark_value>convert to PDF;command line parameters</bookmark_value>
</bookmark>
<section id="pdfcliparams">
    <h1 id="hd_id121682091245245"><variable id="h1"><link href="text/shared/guide/pdf_params.xhp">PDF Export Command Line Parameters</link></variable></h1>
    <paragraph id="par_id671682091245248" role="paragraph">The PDF filter accepts a string of options containing PDF properties for export.</paragraph>
</section>

<h3 id="hd_id971682091492801">Examples:</h3>
<paragraph role="paragraph" id="par_id841682091860427">To skip the first page of a Draw document:</paragraph>
<paragraph role="paragraph" localize="false" id="par_id431682091883909"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"PageRange":{"type":"string","value":"2-"}}' test.odg</input></paragraph>

<paragraph role="paragraph" id="par_id681682091902912">To add a tiled watermark:</paragraph>

<paragraph role="paragraph" localize="false" id="par_id271682091918895"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"TiledWatermark":{"type":"string","value":"draft"}}' test.odg</input></paragraph>

<paragraph role="paragraph" id="par_id661682091944531">To encrypt a file:</paragraph>

<paragraph role="paragraph" localize="false" id="par_id671682092011327"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"EncryptFile":{"type":"boolean","value":"true"},"DocumentOpenPassword":{"type":"string","value":"secret"}}' test.odg</input></paragraph>

<paragraph role="paragraph" id="par_id601682091972478">To set version 1.5 (instead of the default 1.7):</paragraph>

<paragraph role="paragraph" localize="false" id="par_id61682091986689"><input>soffice --convert-to 'pdf:draw_pdf_Export:{"SelectPdfVersion":{"type":"long","value":"15"}}' test.odg</input></paragraph>
<h2 id="hd_id791693493415853">Index</h2>
<paragraph role="paragraph" id="par_id881693493458276" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#general_properties" markup="ignore"/></paragraph>
<paragraph role="paragraph" id="par_id331693493646090" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#initial_view" markup="ignore"/></paragraph>
<paragraph role="paragraph" id="par_id561693493718819" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#user_interface" markup="ignore"/></paragraph>
<paragraph role="paragraph" id="par_id891693493751156" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#links" markup="ignore"/></paragraph>
<paragraph role="paragraph" id="par_id801693493791591" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#security" markup="ignore"/></paragraph>
<paragraph role="paragraph" id="par_id941693493872432" localize="false"><embedvar href="text/shared/guide/pdf_params.xhp#digital_signature" markup="ignore"/></paragraph>

<h2 id="hd_id161682092535475"><variable id="general_properties"><link href="text/shared/guide/pdf_params.xhp#generaltext/shared/guide/pdf_params.xhp">General Properties</link></variable></h2>
<paragraph role="paragraph" id="par_id431693518528694" localize="false"><embedvar href="text/shared/01/ref_pdf_export_general.xhp#pdfexportgeneralh1" markup="ignore"/></paragraph>
<table id="tab_id871682092689083">
    <tablerow>
        <tablecell>
            <paragraph id="par_id461682092689084" role="tablehead"><variable id="pn">Name</variable></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id141682092689085" role="tablehead"><variable id="desc">Description</variable></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id991682092689085" role="tablehead"><variable id="typ">Type</variable></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id981682092689085" role="tablehead"><variable id="defval">Default Value</variable></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id201682092689086" localize="false" role="tablecontent"><literal>PageRange</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682092689099" role="tablecontent"> If this property is set, it indicates the range of pages to be exported. </paragraph>
            <paragraph role="tablecontent" id="par_id611682092936607">To export all the pages, leave this property unset.</paragraph>
            <paragraph role="tablecontent" id="par_id481682092945791">To export a selection, leave this property unset and set only the property <literal>Selection</literal>.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id71682092689100" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id72682092689100" role="tablecontent">Empty (all pages are exported)</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id751682093114539" localize="false" role="tablecontent"><literal>Selection</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id601682093114540" role="tablecontent">An <emph>any</emph> corresponding to the current selection in the document.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id201682093114542" localize="false" role="tablecontent">Any</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id991682094882340" localize="false" role="tablecontent"><literal>UseLosslessCompression</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id191682094882341" role="tablecontent">Specifies if images are exported to PDF using a lossless compression format like <emph>PNG</emph> or compressed using the <emph>JPEG</emph> format.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id981682094882342" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id781682094882343" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id341682095024851" localize="false" role="tablecontent"><literal>Quality</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id821682095024852" role="tablecontent">Specifies the quality of the JPG export. A higher value produces a higher-quality image and a larger file.</paragraph>
            <paragraph role="paragraph" id="par_id931682095141797">Minimum inclusive value: 1. Represents the lowest value that can be used. The lower the value, the worse is the image quality and the smaller is the file size.</paragraph>
            <paragraph role="paragraph" id="par_id791682095148125">Maximum inclusive value: 100. Represents the highest value that can be used. The higher the value, the better is the image quality and the larger is the file size.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id121682095024853" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id541682095024854" localize="false" role="tablecontent">90</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id211682095187330" localize="false" role="tablecontent"><literal>ReduceImageResolution</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id281682095187331" role="tablecontent">Specifies if the resolution of each image is reduced to the resolution specified by the property <literal>MaxImageResolution</literal>.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id781682095187332" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id391682095187333" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id651682095537395" localize="false" role="tablecontent"><literal>MaxImageResolution</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id201682095537396" role="tablecontent">If the property <literal>ReduceImageResolution</literal> is set to true, all images will be reduced to the given value in DPI. Possible values are: 75, 150, 300, 600 and 1200.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id661682095537398" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id411682095537399" localize="false" role="tablecontent">300</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id931682095840340" localize="false" role="tablecontent"><literal>SelectPdfVersion</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id701682095840341" role="tablecontent">Specifies the PDF version to emit. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id421682095915294">0: PDF 1.7 (default choice).</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id261682095923984">1: PDF/A-1b</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id61682125726522">2: PDF/A-2b</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id501682125731427">3: PDF/A-3b</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id401682125738450">15: PDF 1.5</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id451682125743938">16: PDF 1.6</paragraph>
            <paragraph role="paragraph" localize="false" id="par_id851682125748773">17: PDF 1.7</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id371682095840342" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id451682095840344" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id551682098105758" localize="false" role="tablecontent"><literal>PDFUACompliance</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id461682098105759" role="tablecontent">Creates an accessible PDF file that follows the requirements of the PDF/UA (ISO 14289) specification.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682098105760" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id481682098105761" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id471682096518884" localize="false" role="tablecontent"><literal>UseTaggedPDF</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id301682096518885" role="tablecontent">Determines if PDFs are created using special accessibility tags.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id691682096518886" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id531682096518888" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id421682096576790" localize="false" role="tablecontent"><literal>ExportFormFields</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id511682096576792" role="tablecontent">Specifies whether form fields are exported as widgets or only their fixed print representation is exported.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id141682096576793" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id701682096576794" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id601682096666646" localize="false" role="tablecontent"><literal>FormsType</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id621682096666647" role="tablecontent">Specifies the submit format of a PDF form. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id241682096785203">0: Specifies that form type FDF is used.</paragraph>
            <paragraph role="paragraph" id="par_id451682096789430">1: Specifies that form type PDF is used.</paragraph>
            <paragraph role="paragraph" id="par_id431682096793624">2: Specifies that form type HTML is used.</paragraph>
            <paragraph role="paragraph" id="par_id871682096797498">3: Specifies that form type XML is used.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id141682096666648" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id301682096666649" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id121682097005545" localize="false" role="tablecontent"><literal>AllowDuplicateFieldNames</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id411682097005546" role="tablecontent">Specifies whether multiple form fields exported are allowed to have the same field name. </paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id501682097005547" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id401682097005548" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id941682097068099" localize="false" role="tablecontent"><literal>ExportBookmarks</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id341682097068100" role="tablecontent"> Specifies if bookmarks are exported to PDF. </paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id71682097068101" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id221682097068102" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id381682129679538" localize="false" role="tablecontent"><literal>ExportPlaceholders </literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682129679539" role="tablecontent">Export the placeholders fields visual markings only. The exported placeholder is ineffective.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id591682129679541" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682129679542" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id501682097116254" localize="false" role="tablecontent"><literal>ExportNotes</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id721682097116255" role="tablecontent">Specifies if notes are exported to PDF.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id441682097116256" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id161682097116257" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id591682097156542" localize="false" role="tablecontent"><literal>ExportNotesPages</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id261682097156543" role="tablecontent">Specifies if notes pages are exported to PDF. (Notes pages are available in Impress documents only).</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id701682097156544" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id711682097156545" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id991682098346419" localize="false" role="tablecontent"><literal>ExportOnlyNotesPages</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id411682098346420" role="tablecontent">If the property <literal>ExportNotesPages</literal> is set to true, specifies if only notes pages are exported to PDF.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id831682098346421" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id951682098346422" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id911682113531618" localize="false" role="tablecontent"><literal>ExportNotesInMargin</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id1001682113531619" role="tablecontent">Specifies if notes in margin are exported to PDF.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id911682113531620" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id251682113531621" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id71682126441874" localize="false" role="tablecontent"><literal>ExportHiddenSlides</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id641682126441875" role="tablecontent">For %PRODUCTNAME Impress, exports slides not included in slide shows.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id721682126441876" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682126441877" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id41682097206960" localize="false" role="tablecontent"><literal>IsSkipEmptyPages</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id811682097206961" role="tablecontent">Specifies that automatically inserted empty pages are suppressed. This option is active only if storing Writer documents.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id701682097206962" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id61682097206963" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id211682097268702" localize="false" role="tablecontent"><literal>EmbedStandardFonts</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id621682097268703" role="tablecontent">Specifies whether to embed the 14 standard PDF fonts or not.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id861682097268704" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id31682097268705" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id561682097328226" localize="false" role="tablecontent"><literal>IsAddStream</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id171682097328227" role="tablecontent">Specifies that a stream is inserted to the PDF file which contains the original document for archiving purposes.</paragraph>
            <paragraph role="tablecontent" id="par_id851682097384813">This option is active only if the PDF Import extension is installed.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id631682097328228" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id291682097328229" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id301682097533263" localize="false" role="tablecontent"><literal>Watermark</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id631682097533264" role="tablecontent">Specifies the text for a watermark to be drawn on every page of the exported PDF file.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id871682097533266" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id641682097533267" localize="false" role="tablecontent">(empty)</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id241682122847913" localize="false" role="tablecontent"><literal>WatermarkColor</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id971682122847914" role="tablecontent">Specifies the color of the watermark text</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id51682122847915" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id881682122847917" localize="false" role="tablecontent">8388223 (light green)</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id781682123372322" localize="false" role="tablecontent"><literal>WatermarkFontHeight</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id861682123372323" role="tablecontent">Specifies the font height of the watermark text.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id451682123372324" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id741682123372325" localize="false" role="tablecontent"></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id231682124018258" localize="false" role="tablecontent"><literal>WatermarkRotateAngle</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id931682124018260" role="tablecontent">Specifies angle of the watermark text.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id791682124018261" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id141682124018262" localize="false" role="tablecontent"></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id311682124177025" localize="false" role="tablecontent"><literal>WatermarkFontName</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id461682124177026" role="tablecontent">Specifies font name of the watermark text.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id261682124177027" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id451682124177028" localize="false" role="tablecontent">Helvetica</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id901682124269899" localize="false" role="tablecontent"><literal>TiledWatermark</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id421682124269900" role="tablecontent">Specifies the tiled watermark text.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id121682124269902" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id791682129849102" localize="false" role="tablecontent"><literal>UseReferenceXObject</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id941682129849103" role="tablecontent">When the option is enabled, then the reference XObject markup is used: this is a simple operation, but viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id671682129849104" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id761682129849105" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id961682130133586" localize="false" role="tablecontent"><literal>IsRedactMode</literal></paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682130133588" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id91682130133589" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id721693492486688" localize="false" role="tablecontent"><literal>SinglePageSheets</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id641693492486689" role="tablecontent">Ignores each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id771693492486690" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id791693492486691" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
</table>
<h2 id="hd_id651682101490073"><variable id="initial_view"><link href="text/shared/guide/pdf_params.xhp#initial_view">Initial View</link></variable></h2>
<paragraph role="paragraph" id="par_id661693518381935" localize="false"><embedvar href="text/shared/01/ref_pdf_export_initial_view.xhp#pdfexportinitialviewh1" markup="ignore"/></paragraph>
<table id="tab_id41682101522613">
    <tablerow>
        <tablecell>
            <paragraph id="par_id431682101522614" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#pn" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682101522615" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#desc" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682101522616" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#typ" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682101522617" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#defval" markup="ignore"/></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id751682101522617" localize="false" role="tablecontent"><literal>InitialView</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id981682101522618" role="tablecontent">Specifies how the PDF document should be displayed when opened. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id141682101963159">0: Select the default viewer mode, neither outlines nor thumbnails.</paragraph>
            <paragraph role="paragraph" id="par_id701682101968454">1: The document is opened with outline pane opened</paragraph>
            <paragraph role="paragraph" id="par_id191682101972902">2: The document is opened with thumbnail pane opened</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682101522619" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682101522620" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id181682102130307" localize="false" role="tablecontent"><literal>InitialPage</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id361682102130308" role="tablecontent">Specifies the page on which a PDF document should be opened in the viewer application.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id161682102130309" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id391682102130310" localize="false" role="tablecontent">1</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id531682102185256" localize="false" role="tablecontent"><literal>Magnification</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id581682102185257" role="tablecontent">Specifies the action to be performed when the PDF document is opened. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id721682102242609">0: Opens with default zoom magnification.</paragraph>
            <paragraph role="paragraph" id="par_id231682102247131">1: Opens magnified to fit the entire page within the window.</paragraph>
            <paragraph role="paragraph" id="par_id291682102252023">2: Opens magnified to fit the entire page width within the window.</paragraph>
            <paragraph role="paragraph" id="par_id801682102257172">3: Opens magnified to fit the entire width of its bounding box within the window (cuts out margins).</paragraph>
            <paragraph role="paragraph" id="par_id681682102262481">4: Opens with the zoom level specified in the Zoom property.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id351682102185259" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id801682102185260" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id491682102284383" localize="false" role="tablecontent"><literal>Zoom</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id151682102284385" role="tablecontent">Specifies the zoom level a PDF document is opened with. Only valid if <literal>Magnification</literal> is set to "4".</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id671682102284386" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id231682102284387" localize="false" role="tablecontent">100</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id91682102357424" localize="false" role="tablecontent"><literal>PageLayout</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id771682102357425" role="tablecontent">Specifies the page layout to be used when the document is opened. Possible values are:</paragraph>

            <paragraph role="paragraph" id="par_id151682102404677">0: Display the pages according to the reader configuration.</paragraph>
            <paragraph role="paragraph" id="par_id671682102409679">1: Display one page at a time.</paragraph>
            <paragraph role="paragraph" id="par_id331682102414339">2: Display the pages in one column.</paragraph>
            <paragraph role="paragraph" id="par_id921682102421537">3: Display the pages in two columns odd pages on the right, to have the odd pages on the left the <literal>FirstPageOnLeft</literal> property should be used as well.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id171682102357426" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id221682102357427" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id511682102472805" localize="false" role="tablecontent"><literal>FirstPageOnLeft</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id531682102472806" role="tablecontent">Used with the value 3 of the <literal>PageLayout</literal> property above, true if the first page (odd) should be on the left side of the screen.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id811682102472807" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id801682102472808" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
</table>
<h2 id="hd_id781682103094811"><variable id="user_interface"><link href="text/shared/guide/pdf_params.xhp#user interface">User Interface</link></variable></h2>
<paragraph role="paragraph" id="par_id811693518223533" localize="false"><embedvar href="text/shared/01/ref_pdf_export_user_interface.xhp#pdfexportuserinterfaceh1" markup="ignore"/></paragraph>
<table id="tab_id41682101522614">
    <tablerow>
        <tablecell>
            <paragraph id="par_id431682111522614" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#pn" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682101622615" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#desc" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682101722616" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#typ" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21682101822617" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#defval" markup="ignore"/></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id141682103608210" localize="false" role="tablecontent"><literal>ResizeWindowToInitialPage</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682103608212" role="tablecontent">Specifies that the PDF viewer window is opened full screen when the document is opened.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id731682103608213" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id241682103608214" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id901682103675580" localize="false" role="tablecontent"><literal>CenterWindow</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id541682103675581" role="tablecontent">Specifies that the PDF viewer window is centered to the screen when the PDF document is opened.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682103675582" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id161682103675583" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id431682103728427" localize="false" role="tablecontent"><literal>OpenInFullScreenMode</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id751682103728428" role="tablecontent">Specifies that the PDF viewer window is opened full screen, on top of all windows.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id111682103728429" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id571682103728430" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id821682103770743" localize="false" role="tablecontent"><literal>DisplayPDFDocumentTitle</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id51682103770744" role="tablecontent">Specifies that the title of the document, if present in the document properties, is displayed in the PDF viewer window title bar.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id941682103770746" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id641682103770747" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id991682103823401" localize="false" role="tablecontent"><literal>HideViewerMenubar</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id101682103823403" role="tablecontent">Specifies whether to hide the PDF viewer menubar when the document is active.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id701682103823404" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id231682103823405" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id211682103876916" localize="false" role="tablecontent"><literal>HideViewerToolbar</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id841682103876917" role="tablecontent">Specifies whether to hide the PDF viewer toolbar when the document is active.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id781682103876919" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id201682103876920" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id21682103930313" localize="false" role="tablecontent"><literal>HideViewerWindowControls</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id491682103930314" role="tablecontent">Specifies whether to hide the PDF viewer controls when the document is active.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id711682103930315" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id381682103930316" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id861682103984521" localize="false" role="tablecontent"><literal>UseTransitionEffects</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id741682103984522" role="tablecontent">Specifies slide transitions are exported to PDF. This option is active only if storing Impress documents.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id891682103984523" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id471682103984524" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id11682104068265" localize="false" role="tablecontent"><literal>OpenBookmarkLevels</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id731682104068266" role="tablecontent">Specifies how many bookmark levels should be opened in the reader application when the PDF gets opened. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id131682104132952">-1: all bookmark levels are opened</paragraph>
            <paragraph role="paragraph" id="par_id441682104137875">1–10: indicate a bookmark level (from 1 to 10)</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id541682104068267" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id541682104068268" localize="false" role="tablecontent">-1</paragraph>
        </tablecell>
    </tablerow>
</table>
<h2 id="hd_id981682103099003"><variable id="links"><link href="text/shared/guide/pdf_params.xhp#links">Links</link></variable></h2>
<paragraph role="paragraph" id="par_id811693518086865" localize="false"><embedvar href="text/shared/01/ref_pdf_export_links.xhp#pdfexportlinksh1" markup="ignore"/></paragraph>
<table id="tab_id41682101522614">
    <tablerow>
        <tablecell>
            <paragraph id="par_id431682101542614" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#pn" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id531682101622615" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#desc" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id61682101722616" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#typ" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id71682101822617" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#defval" markup="ignore"/></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id581682104332818" localize="false" role="tablecontent"><literal>ExportBookmarksToPDFDestination</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id641682104332819" role="tablecontent">Specifies that the bookmarks contained in the source %PRODUCTNAME file should be exported to the PDF file as Named Destination.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id111682104332820" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id651682104332822" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id531682104419168" localize="false" role="tablecontent"><literal>ConvertOOoTargetToPDFTarget</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682104419169" role="tablecontent">Specifies that the target documents with .od[tpgs] extension, will have that extension changed to .pdf when the link is exported to PDF. The source document remains untouched.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id711682104419171" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id491682104419172" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id71682104484868" localize="false" role="tablecontent"><literal>ExportLinksRelativeFsys</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id911682104484869" role="tablecontent">Specifies that the file system related hyperlinks (file:// protocol) present in the document will be exported as relative to the source document location.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682104484870" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id951682104484872" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id641682104540031" localize="false" role="tablecontent"><literal>PDFViewSelection</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id991682104540032" role="tablecontent">Specifies the way the exported PDF will be viewed (experienced) by the user. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id681682104589018">0: Specifies that the PDF will be exported with all the links external to the document treated as URI. This is the Default</paragraph>
            <paragraph role="paragraph" id="par_id341682104594990">1: Specifies that the PDF will be exported in order to be viewed through a PDF reader application only. Valid only if not exporting to PDF/A-1 (e.g. SelectPdfVersion not set to 1).</paragraph>
            <paragraph role="paragraph" id="par_id161682104601779">2: Specifies that the PDF will be exported in order to be viewed through an Internet browser, using the PDF plug-in provided with it. The bookmark of the URI will be rendered compatible with the target bookmark generated with %PRODUCTNAME PDF Export feature (see <literal>ExportBookmarksToPDFDestination</literal>).</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id941682104540033" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id971682104540034" localize="false" role="tablecontent">0</paragraph>
        </tablecell>
    </tablerow>
</table>
<h2 id="hd_id431682103103402"><variable id="security"><link href="text/shared/guide/pdf_params.xhp#security">Security</link></variable></h2>
<paragraph role="paragraph" id="par_id361693518802980" localize="false"><embedvar href="text/shared/01/ref_pdf_export_security.xhp#pdfexportsecurityh1" markup="ignore"/></paragraph>
<table id="tab_id41682101522614">
    <tablerow>
        <tablecell>
            <paragraph id="par_id441682101522614" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#pn" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id351682101622615" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#desc" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21782101722616" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#typ" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21882101822617" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#defval" markup="ignore"/></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id251682110042450" localize="false" role="tablecontent"><literal>EncryptFile</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id561682110042451" role="tablecontent">If true, selects to encrypt the PDF document with a password. The PDF file can be opened only when the user enters the correct password.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id231682110042453" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id321682110042454" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id641682110120038" localize="false" role="tablecontent"><literal>DocumentOpenPassword</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id481682110120040" role="tablecontent">This is the password that allows the user to open the PDF file when <literal>EncryptFile</literal> is set to true.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id771682110120041" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id411682110204355" localize="false" role="tablecontent"><literal>RestrictPermissions</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id421682110204356" role="tablecontent">If true, selects to restrict some permissions. The permissions can be changed only when the user enters the correct password.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id161682110204357" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id171682110204358" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id621682110251805" localize="false" role="tablecontent"><literal>PermissionPassword</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id461682110251806" role="tablecontent">This is the password that allows the user to access some permissions restricted if <literal>RestrictPermissions</literal> is set to true.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id521682110251807" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id731682125169856" localize="false" role="tablecontent"><literal>PreparedPasswords</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id831682125169857" role="tablecontent"></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id871682125169858" localize="false" role="tablecontent"></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id601682125169859" localize="false" role="tablecontent"></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id241682125214902" localize="false" role="tablecontent"><literal>PreparedPermissionPassword</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id401682125214903" role="tablecontent"></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id251682125214904" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id301682110333149" localize="false" role="tablecontent"><literal>Printing</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id331682110333150" role="tablecontent">Specifies what printing is allowed. Possible values are:</paragraph>

            <paragraph role="paragraph" id="par_id451682110379499">0: The document cannot be printed.</paragraph>
            <paragraph role="paragraph" id="par_id971682110383819">1: The document can be printed at low resolution only.</paragraph>
            <paragraph role="paragraph" id="par_id441682110387779">2: The document can be printed at maximum resolution.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id101682110333152" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id421682110333153" localize="false" role="tablecontent">2</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id11682110417182" localize="false" role="tablecontent"><literal>Changes</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id111682110417183" role="tablecontent">Specifies the changes that can be made to the document. Possible values are:</paragraph>
            <paragraph role="paragraph" id="par_id791682110462123">0: The document cannot be changed.</paragraph>
            <paragraph role="paragraph" id="par_id91682110466372">1: Inserting deleting and rotating pages is allowed.</paragraph>
            <paragraph role="paragraph" id="par_id301682110472022">2: Filling of form field is allowed.</paragraph>
            <paragraph role="paragraph" id="par_id461682110476540">3: Both filling of form field and commenting is allowed.</paragraph>
            <paragraph role="paragraph" id="par_id491682110483959">4: All the changes of the previous selections are permitted, with the only exclusion of page extraction (copy).</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id221682110417184" localize="false" role="tablecontent">long</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id531682110417186" localize="false" role="tablecontent">4</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id781682110577550" localize="false" role="tablecontent"><literal>EnableCopyingOfContent</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id271682110577552" role="tablecontent">Specifies that the pages and the document content can be extracted to be used in other documents (copy and paste).</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id51682110577553" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id221682110577554" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id991682110633184" localize="false" role="tablecontent"><literal>EnableTextAccessForAccessibilityTools</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id491682110633185" role="tablecontent">Specifies that the document content can be extracted to be used in accessibility applications.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id111682110633187" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id841682110633188" localize="false" role="tablecontent">true</paragraph>
        </tablecell>
    </tablerow>
</table>
<h2 id="hd_id211682127014184"><variable id="digital_signature"><link href="text/shared/guide/pdf_params.xhp#digital_signature">Digital Signature</link></variable></h2>
<paragraph role="paragraph" id="par_id231693517557779" localize="false"><embedvar href="text/shared/01/ref_pdf_export_digital_signature.xhp#pdfexportdigitalsignatureh1" markup="ignore"/></paragraph>
<table id="tab_id51682101522614">
    <tablerow>
        <tablecell>
            <paragraph id="par_id441682101532614" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#pn" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id351682101642615" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#desc" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21782101752616" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#typ" markup="ignore"/></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id21882101862617" localize="false" role="tablehead"><embedvar href="text/shared/guide/pdf_params.xhp#defval" markup="ignore"/></paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id391682127040191" localize="false" role="tablecontent"><literal>SignPDF</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id611682127040192" role="tablecontent">If true, sign the PDF.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id961682127040193" localize="false" role="tablecontent">boolean</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id971682127040194" localize="false" role="tablecontent">false</paragraph>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id291682127237507" localize="false" role="tablecontent"><literal>SignatureLocation </literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id621682127237508" role="tablecontent">Additional information about the digital signature, location of the signatory.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id71682127237509" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id361682127621142" localize="false" role="tablecontent"><literal>SignatureReason</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id901682127621143" role="tablecontent">Additional information about the digital signature, reason for signature.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id671682127621144" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id891682127669859" localize="false" role="tablecontent"><literal>SignatureContactInfo</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id121682127669860" role="tablecontent">Additional information about the digital signature, signatory contact information.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id381682127669861" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id921682127786863" localize="false" role="tablecontent"><literal>SignaturePassword</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id11682127786864" role="tablecontent">Certificate password</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id611682127786865" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id771682127831871" localize="false" role="tablecontent"><literal>SignatureCertificate</literal></paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
        <tablecell>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id891682129073072" localize="false" role="tablecontent"><literal>SignCertificateSubjectName</literal></paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
        <tablecell>
            <paragraph id="par_id651682129073075" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
    <tablerow>
        <tablecell>
            <paragraph id="par_id161682129138274" localize="false" role="tablecontent"><literal>SignatureTSA</literal></paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id1001682129138275" role="tablecontent">During the PDF signing process, the timestamp authority URL will be used to obtain a digitally signed timestamp that is then embedded in the signature.</paragraph>
        </tablecell>
        <tablecell>
            <paragraph id="par_id671682129138276" localize="false" role="tablecontent">string</paragraph>
        </tablecell>
        <tablecell>
        </tablecell>
    </tablerow>
</table>
</body>
</helpdocument>