3656a57e88
Change-Id: Id1e74f18c90e69d1a781c8f02e30dc3c005ed4fd
84 lines
4.1 KiB
Text
84 lines
4.1 KiB
Text
/* -*- 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 word {
|
|
constants WdListNumberStyle {
|
|
const long wdListNumberStyleAiueo = 20;
|
|
const long wdListNumberStyleAiueoHalfWidth = 12;
|
|
const long wdListNumberStyleArabic = 0;
|
|
const long wdListNumberStyleArabic1 = 46;
|
|
const long wdListNumberStyleArabic2 = 48;
|
|
const long wdListNumberStyleArabicFullWidth = 14;
|
|
const long wdListNumberStyleArabicLZ = 22;
|
|
const long wdListNumberStyleBullet = 23;
|
|
const long wdListNumberStyleCardinalText = 6;
|
|
const long wdListNumberStyleChosung = 25;
|
|
const long wdListNumberStyleGanada = 24;
|
|
const long wdListNumberStyleGBNum1 = 26;
|
|
const long wdListNumberStyleGBNum2 = 27;
|
|
const long wdListNumberStyleGBNum3 = 28;
|
|
const long wdListNumberStyleGBNum4 = 29;
|
|
const long wdListNumberStyleHangul = 43;
|
|
const long wdListNumberStyleHanja = 44;
|
|
const long wdListNumberStyleHanjaRead = 41;
|
|
const long wdListNumberStyleHanjaReadDigit = 42;
|
|
const long wdListNumberStyleHebrew1 = 45;
|
|
const long wdListNumberStyleHebrew2 = 47;
|
|
const long wdListNumberStyleHindiArabic = 51;
|
|
const long wdListNumberStyleHindiCardinalText = 52;
|
|
const long wdListNumberStyleHindiLetter1 = 49;
|
|
const long wdListNumberStyleHindiLetter2 = 50;
|
|
const long wdListNumberStyleIroha = 21;
|
|
const long wdListNumberStyleIrohaHalfWidth = 13;
|
|
const long wdListNumberStyleKanji = 10;
|
|
const long wdListNumberStyleKanjiDigit = 11;
|
|
const long wdListNumberStyleKanjiTraditional = 16;
|
|
const long wdListNumberStyleKanjiTraditional2 = 17;
|
|
const long wdListNumberStyleLegal = 253;
|
|
const long wdListNumberStyleLegalLZ = 254;
|
|
const long wdListNumberStyleLowercaseLetter = 4;
|
|
const long wdListNumberStyleLowercaseRoman = 2;
|
|
const long wdListNumberStyleLowercaseRussian = 58;
|
|
const long wdListNumberStyleNone = 255;
|
|
const long wdListNumberStyleNumberInCircle = 18;
|
|
const long wdListNumberStyleOrdinal = 5;
|
|
const long wdListNumberStyleOrdinalText = 7;
|
|
const long wdListNumberStylePictureBullet = 249;
|
|
const long wdListNumberStyleSimpChinNum1 = 37;
|
|
const long wdListNumberStyleSimpChinNum2 = 38;
|
|
const long wdListNumberStyleSimpChinNum3 = 39;
|
|
const long wdListNumberStyleSimpChinNum4 = 40;
|
|
const long wdListNumberStyleThaiArabic = 54;
|
|
const long wdListNumberStyleThaiCardinalText = 55;
|
|
const long wdListNumberStyleThaiLetter = 53;
|
|
const long wdListNumberStyleTradChinNum1 = 33;
|
|
const long wdListNumberStyleTradChinNum2 = 34;
|
|
const long wdListNumberStyleTradChinNum3 = 35;
|
|
const long wdListNumberStyleTradChinNum4 = 36;
|
|
const long wdListNumberStyleUppercaseLetter = 3;
|
|
const long wdListNumberStyleUppercaseRoman = 1;
|
|
const long wdListNumberStyleUppercaseRussian = 59;
|
|
const long wdListNumberStyleVietCardinalText = 56;
|
|
const long wdListNumberStyleZodiac1 = 30;
|
|
const long wdListNumberStyleZodiac2 = 31;
|
|
const long wdListNumberStyleZodiac3 = 32;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|