1*b63233d8Sdamjan/************************************************************** 2*b63233d8Sdamjan * 3*b63233d8Sdamjan * Licensed to the Apache Software Foundation (ASF) under one 4*b63233d8Sdamjan * or more contributor license agreements. See the NOTICE file 5*b63233d8Sdamjan * distributed with this work for additional information 6*b63233d8Sdamjan * regarding copyright ownership. The ASF licenses this file 7*b63233d8Sdamjan * to you under the Apache License, Version 2.0 (the 8*b63233d8Sdamjan * "License"); you may not use this file except in compliance 9*b63233d8Sdamjan * with the License. You may obtain a copy of the License at 10*b63233d8Sdamjan * 11*b63233d8Sdamjan * http://www.apache.org/licenses/LICENSE-2.0 12*b63233d8Sdamjan * 13*b63233d8Sdamjan * Unless required by applicable law or agreed to in writing, 14*b63233d8Sdamjan * software distributed under the License is distributed on an 15*b63233d8Sdamjan * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b63233d8Sdamjan * KIND, either express or implied. See the License for the 17*b63233d8Sdamjan * specific language governing permissions and limitations 18*b63233d8Sdamjan * under the License. 19*b63233d8Sdamjan * 20*b63233d8Sdamjan *************************************************************/ 21*b63233d8Sdamjan 22*b63233d8Sdamjanmodule ooo { module vba { module excel { 23*b63233d8Sdamjan constants XlApplicationInternational { 24*b63233d8Sdamjan const long xl24HourClock = 33; 25*b63233d8Sdamjan const long xl4DigitYears = 43; 26*b63233d8Sdamjan const long xlAlternateArraySeparator = 16; 27*b63233d8Sdamjan const long xlColumnSeparator = 14; 28*b63233d8Sdamjan const long xlCountryCode = 1; 29*b63233d8Sdamjan const long xlCountrySetting = 2; 30*b63233d8Sdamjan const long xlCurrencyBefore = 37; 31*b63233d8Sdamjan const long xlCurrencyCode = 25; 32*b63233d8Sdamjan const long xlCurrencyDigits = 27; 33*b63233d8Sdamjan const long xlCurrencyLeadingZeros = 40; 34*b63233d8Sdamjan const long xlCurrencyMinusSign = 38; 35*b63233d8Sdamjan const long xlCurrencyNegative = 28; 36*b63233d8Sdamjan const long xlCurrencySpaceBefore = 36; 37*b63233d8Sdamjan const long xlCurrencyTrailingZeros = 39; 38*b63233d8Sdamjan const long xlDateOrder = 32; 39*b63233d8Sdamjan const long xlDateSeparator = 17; 40*b63233d8Sdamjan const long xlDayCode = 21; 41*b63233d8Sdamjan const long xlDayLeadingZero = 42; 42*b63233d8Sdamjan const long xlDecimalSeparator = 3; 43*b63233d8Sdamjan const long xlGeneralFormatName = 26; 44*b63233d8Sdamjan const long xlHourCode = 22; 45*b63233d8Sdamjan const long xlLeftBrace = 12; 46*b63233d8Sdamjan const long xlLeftBracket = 10; 47*b63233d8Sdamjan const long xlListSeparator = 5; 48*b63233d8Sdamjan const long xlLowerCaseColumnLetter = 9; 49*b63233d8Sdamjan const long xlLowerCaseRowLetter = 8; 50*b63233d8Sdamjan const long xlMDY = 44; 51*b63233d8Sdamjan const long xlMetric = 35; 52*b63233d8Sdamjan const long xlMinuteCode = 23; 53*b63233d8Sdamjan const long xlMonthCode = 20; 54*b63233d8Sdamjan const long xlMonthLeadingZero = 41; 55*b63233d8Sdamjan const long xlMonthNameChars = 30; 56*b63233d8Sdamjan const long xlNoncurrencyDigits = 29; 57*b63233d8Sdamjan const long xlNonEnglishFunctions = 34; 58*b63233d8Sdamjan const long xlRightBrace = 13; 59*b63233d8Sdamjan const long xlRightBracket = 11; 60*b63233d8Sdamjan const long xlRowSeparator = 15; 61*b63233d8Sdamjan const long xlSecondCode = 24; 62*b63233d8Sdamjan const long xlThousandsSeparator = 4; 63*b63233d8Sdamjan const long xlTimeLeadingZero = 45; 64*b63233d8Sdamjan const long xlTimeSeparator = 18; 65*b63233d8Sdamjan const long xlUpperCaseColumnLetter = 7; 66*b63233d8Sdamjan const long xlUpperCaseRowLetter = 6; 67*b63233d8Sdamjan const long xlWeekdayNameChars = 31; 68*b63233d8Sdamjan const long xlYearCode = 19; 69*b63233d8Sdamjan }; 70*b63233d8Sdamjan}; }; }; 71