blob: 85a39e51966d9e6ef6e25d5c385f56192139a97f (
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
|
/* -*- 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 WdTableFormat {
const long wdTableFormat3DEffects1 = 32;
const long wdTableFormat3DEffects2 = 33;
const long wdTableFormat3DEffects3 = 34;
const long wdTableFormatClassic1 = 4;
const long wdTableFormatClassic2 = 5;
const long wdTableFormatClassic3 = 6;
const long wdTableFormatClassic4 = 7;
const long wdTableFormatColorful1 = 8;
const long wdTableFormatColorful2 = 9;
const long wdTableFormatColorful3 = 10;
const long wdTableFormatColumns1 = 11;
const long wdTableFormatColumns2 = 12;
const long wdTableFormatColumns3 = 13;
const long wdTableFormatColumns4 = 14;
const long wdTableFormatColumns5 = 15;
const long wdTableFormatContemporary = 35;
const long wdTableFormatElegant = 36;
const long wdTableFormatGrid1 = 16;
const long wdTableFormatGrid2 = 17;
const long wdTableFormatGrid3 = 18;
const long wdTableFormatGrid4 = 19;
const long wdTableFormatGrid5 = 20;
const long wdTableFormatGrid6 = 21;
const long wdTableFormatGrid7 = 22;
const long wdTableFormatGrid8 = 23;
const long wdTableFormatList1 = 24;
const long wdTableFormatList2 = 25;
const long wdTableFormatList3 = 26;
const long wdTableFormatList4 = 27;
const long wdTableFormatList5 = 28;
const long wdTableFormatList6 = 29;
const long wdTableFormatList7 = 30;
const long wdTableFormatList8 = 31;
const long wdTableFormatNone = 0;
const long wdTableFormatProfessional = 37;
const long wdTableFormatSimple1 = 1;
const long wdTableFormatSimple2 = 2;
const long wdTableFormatSimple3 = 3;
const long wdTableFormatSubtle1 = 38;
const long wdTableFormatSubtle2 = 39;
const long wdTableFormatWeb1 = 40;
const long wdTableFormatWeb2 = 41;
const long wdTableFormatWeb3 = 42;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|