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 word { 23 constants WdPaperSize { 24 const long wdPaper10x14 = 0; 25 const long wdPaper11x17 = 1; 26 const long wdPaperA3 = 6; 27 const long wdPaperA4 = 7; 28 const long wdPaperA4Small = 8; 29 const long wdPaperA5 = 9; 30 const long wdPaperB4 = 10; 31 const long wdPaperB5 = 11; 32 const long wdPaperCSheet = 12; 33 const long wdPaperCustom = 41; 34 const long wdPaperDSheet = 13; 35 const long wdPaperEnvelope10 = 25; 36 const long wdPaperEnvelope11 = 26; 37 const long wdPaperEnvelope12 = 27; 38 const long wdPaperEnvelope14 = 28; 39 const long wdPaperEnvelope9 = 24; 40 const long wdPaperEnvelopeB4 = 29; 41 const long wdPaperEnvelopeB5 = 30; 42 const long wdPaperEnvelopeB6 = 31; 43 const long wdPaperEnvelopeC3 = 32; 44 const long wdPaperEnvelopeC4 = 33; 45 const long wdPaperEnvelopeC5 = 34; 46 const long wdPaperEnvelopeC6 = 35; 47 const long wdPaperEnvelopeC65 = 36; 48 const long wdPaperEnvelopeDL = 37; 49 const long wdPaperEnvelopeItaly = 38; 50 const long wdPaperEnvelopeMonarch = 39; 51 const long wdPaperEnvelopePersonal = 40; 52 const long wdPaperESheet = 14; 53 const long wdPaperExecutive = 5; 54 const long wdPaperFanfoldLegalGerman = 15; 55 const long wdPaperFanfoldStdGerman = 16; 56 const long wdPaperFanfoldUS = 17; 57 const long wdPaperFolio = 18; 58 const long wdPaperLedger = 19; 59 const long wdPaperLegal = 4; 60 const long wdPaperLetter = 2; 61 const long wdPaperLetterSmall = 3; 62 const long wdPaperNote = 20; 63 const long wdPaperQuarto = 21; 64 const long wdPaperStatement = 22; 65 const long wdPaperTabloid = 23; 66 }; 67}; }; }; 68