blob: 4c17cb87febbba35267e50a40780da14d40f9efb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/* -*- 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: */
|