diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /oovbaapi/ooo/vba/excel/XlPaperSize.idl | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream/4%7.4.7.tar.xz libreoffice-upstream/4%7.4.7.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlPaperSize.idl')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XlPaperSize.idl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlPaperSize.idl b/oovbaapi/ooo/vba/excel/XlPaperSize.idl new file mode 100644 index 000000000..b7c220b5e --- /dev/null +++ b/oovbaapi/ooo/vba/excel/XlPaperSize.idl @@ -0,0 +1,67 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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 . + */ + +module ooo { module vba { module excel { + constants XlPaperSize { + const long xlPaper10x14 = 16; + const long xlPaper11x17 = 17; + const long xlPaperA3 = 8; + const long xlPaperA4 = 9; + const long xlPaperA4Small = 10; + const long xlPaperA5 = 11; + const long xlPaperB4 = 12; + const long xlPaperB5 = 13; + const long xlPaperCsheet = 24; + const long xlPaperDsheet = 25; + const long xlPaperEnvelope10 = 20; + const long xlPaperEnvelope11 = 21; + const long xlPaperEnvelope12 = 22; + const long xlPaperEnvelope14 = 23; + const long xlPaperEnvelope9 = 19; + const long xlPaperEnvelopeB4 = 33; + const long xlPaperEnvelopeB5 = 34; + const long xlPaperEnvelopeB6 = 35; + const long xlPaperEnvelopeC3 = 29; + const long xlPaperEnvelopeC4 = 30; + const long xlPaperEnvelopeC5 = 28; + const long xlPaperEnvelopeC6 = 31; + const long xlPaperEnvelopeC65 = 32; + const long xlPaperEnvelopeDL = 27; + const long xlPaperEnvelopeItaly = 36; + const long xlPaperEnvelopeMonarch = 37; + const long xlPaperEnvelopePersonal = 38; + const long xlPaperEsheet = 26; + const long xlPaperExecutive = 7; + const long xlPaperFanfoldLegalGerman = 41; + const long xlPaperFanfoldStdGerman = 40; + const long xlPaperFanfoldUS = 39; + const long xlPaperFolio = 14; + const long xlPaperLedger = 4; + const long xlPaperLegal = 5; + const long xlPaperLetter = 1; + const long xlPaperLetterSmall = 2; + const long xlPaperNote = 18; + const long xlPaperQuarto = 15; + const long xlPaperStatement = 6; + const long xlPaperTabloid = 3; + const long xlPaperUser = 256; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |