/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ 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; }; }; }; };