1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22module ooo { module vba { module excel {
23    constants XlPaperSize {
24        const long xlPaper10x14 = 16;
25        const long xlPaper11x17 = 17;
26        const long xlPaperA3 = 8;
27        const long xlPaperA4 = 9;
28        const long xlPaperA4Small = 10;
29        const long xlPaperA5 = 11;
30        const long xlPaperB4 = 12;
31        const long xlPaperB5 = 13;
32        const long xlPaperCsheet = 24;
33        const long xlPaperDsheet = 25;
34        const long xlPaperEnvelope10 = 20;
35        const long xlPaperEnvelope11 = 21;
36        const long xlPaperEnvelope12 = 22;
37        const long xlPaperEnvelope14 = 23;
38        const long xlPaperEnvelope9 = 19;
39        const long xlPaperEnvelopeB4 = 33;
40        const long xlPaperEnvelopeB5 = 34;
41        const long xlPaperEnvelopeB6 = 35;
42        const long xlPaperEnvelopeC3 = 29;
43        const long xlPaperEnvelopeC4 = 30;
44        const long xlPaperEnvelopeC5 = 28;
45        const long xlPaperEnvelopeC6 = 31;
46        const long xlPaperEnvelopeC65 = 32;
47        const long xlPaperEnvelopeDL = 27;
48        const long xlPaperEnvelopeItaly = 36;
49        const long xlPaperEnvelopeMonarch = 37;
50        const long xlPaperEnvelopePersonal = 38;
51        const long xlPaperEsheet = 26;
52        const long xlPaperExecutive = 7;
53        const long xlPaperFanfoldLegalGerman = 41;
54        const long xlPaperFanfoldStdGerman = 40;
55        const long xlPaperFanfoldUS = 39;
56        const long xlPaperFolio = 14;
57        const long xlPaperLedger = 4;
58        const long xlPaperLegal = 5;
59        const long xlPaperLetter = 1;
60        const long xlPaperLetterSmall = 2;
61        const long xlPaperNote = 18;
62        const long xlPaperQuarto = 15;
63        const long xlPaperStatement = 6;
64        const long xlPaperTabloid = 3;
65        const long xlPaperUser = 256;
66    };
67}; }; };
68