1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module ooo
{ module vba
{ module word
{
21 constants WdTableFormat
{
22 const long wdTableFormat3DEffects1
= 32;
23 const long wdTableFormat3DEffects2
= 33;
24 const long wdTableFormat3DEffects3
= 34;
25 const long wdTableFormatClassic1
= 4;
26 const long wdTableFormatClassic2
= 5;
27 const long wdTableFormatClassic3
= 6;
28 const long wdTableFormatClassic4
= 7;
29 const long wdTableFormatColorful1
= 8;
30 const long wdTableFormatColorful2
= 9;
31 const long wdTableFormatColorful3
= 10;
32 const long wdTableFormatColumns1
= 11;
33 const long wdTableFormatColumns2
= 12;
34 const long wdTableFormatColumns3
= 13;
35 const long wdTableFormatColumns4
= 14;
36 const long wdTableFormatColumns5
= 15;
37 const long wdTableFormatContemporary
= 35;
38 const long wdTableFormatElegant
= 36;
39 const long wdTableFormatGrid1
= 16;
40 const long wdTableFormatGrid2
= 17;
41 const long wdTableFormatGrid3
= 18;
42 const long wdTableFormatGrid4
= 19;
43 const long wdTableFormatGrid5
= 20;
44 const long wdTableFormatGrid6
= 21;
45 const long wdTableFormatGrid7
= 22;
46 const long wdTableFormatGrid8
= 23;
47 const long wdTableFormatList1
= 24;
48 const long wdTableFormatList2
= 25;
49 const long wdTableFormatList3
= 26;
50 const long wdTableFormatList4
= 27;
51 const long wdTableFormatList5
= 28;
52 const long wdTableFormatList6
= 29;
53 const long wdTableFormatList7
= 30;
54 const long wdTableFormatList8
= 31;
55 const long wdTableFormatNone
= 0;
56 const long wdTableFormatProfessional
= 37;
57 const long wdTableFormatSimple1
= 1;
58 const long wdTableFormatSimple2
= 2;
59 const long wdTableFormatSimple3
= 3;
60 const long wdTableFormatSubtle1
= 38;
61 const long wdTableFormatSubtle2
= 39;
62 const long wdTableFormatWeb1
= 40;
63 const long wdTableFormatWeb2
= 41;
64 const long wdTableFormatWeb3
= 42;
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */