1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com
{ module sun
{ module star
{ module text
{
24 /** These properties describe the printing of the content of a text document.
26 published service PrintSettings
28 /** determines if graphic objects are printed
30 [property
] boolean PrintGraphics
;
32 /** determines if text tables are printed.
34 * @deprecated since 24.8.
36 * The functionality behind this property is removed.
38 [property
] boolean PrintTables
;
40 /** determines if shapes are printed.
42 * @deprecated since 24.8. Use PrintGraphics instead.
44 [property
] boolean PrintDrawings
;
46 /** determines if left pages are printed.
48 [property
] boolean PrintLeftPages
;
50 /** determines if right pages are printed.
52 [property
] boolean PrintRightPages
;
54 /** determines if control shapes are printed.
56 [property
] boolean PrintControls
;
58 /** determines if the pages are printed in the reverse order, starting with the last page.
60 * @deprecated since 24.8.
62 * The functionality behind this property is removed. Use com::sun::star::view::PrintSettings::PrintReversed instead.
64 [property
] boolean PrintReversed
;
66 /** specifies if the printer paper tray selection of the system
71 <p>If com::sun::star::view::PrintSettings::PaperFromSetup is `FALSE`,
72 then the paper tray selection of the page styles is used.</p>
74 [property
] boolean PrintPaperFromSetup
;
76 /** contains the name of the fax.
78 [property
] string PrintFaxName
;
80 /** determines how notes are printed.@see NotePrintMode
82 [property
] com
::sun
::star
::text
::NotePrintMode PrintAnnotationMode
;
84 /** determines if prospect printing is used.
86 [property
] boolean PrintProspect
;
88 /** determines if the background color / background graphic of pages is printed.
90 [property
] boolean PrintPageBackground
;
92 /** determines if characters are always printed in black.
94 [property
] boolean PrintBlackFonts
;
97 /** determines if automatically inserted empty pages are printed.
99 [optional, property
] boolean PrintEmptyPages
;
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */