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 office
{
21 constants MsoPatternType
{
22 const long msoPattern10Percent
= 2;
23 const long msoPattern20Percent
= 3;
24 const long msoPattern25Percent
= 4;
25 const long msoPattern30Percent
= 5;
26 const long msoPattern40Percent
= 6;
27 const long msoPattern50Percent
= 7;
28 const long msoPattern5Percent
= 1;
29 const long msoPattern60Percent
= 8;
30 const long msoPattern70Percent
= 9;
31 const long msoPattern75Percent
= 10;
32 const long msoPattern80Percent
= 11;
33 const long msoPattern90Percent
= 12;
34 const long msoPatternDarkDownwardDiagonal
= 15;
35 const long msoPatternDarkHorizontal
= 13;
36 const long msoPatternDarkUpwardDiagonal
= 16;
37 const long msoPatternDarkVertical
= 14;
38 const long msoPatternDashedDownwardDiagonal
= 28;
39 const long msoPatternDashedHorizontal
= 32;
40 const long msoPatternDashedUpwardDiagonal
= 27;
41 const long msoPatternDashedVertical
= 31;
42 const long msoPatternDiagonalBrick
= 40;
43 const long msoPatternDivot
= 46;
44 const long msoPatternDottedDiamond
= 24;
45 const long msoPatternDottedGrid
= 45;
46 const long msoPatternHorizontalBrick
= 35;
47 const long msoPatternLargeCheckerBoard
= 36;
48 const long msoPatternLargeConfetti
= 33;
49 const long msoPatternLargeGrid
= 34;
50 const long msoPatternLightDownwardDiagonal
= 21;
51 const long msoPatternLightHorizontal
= 19;
52 const long msoPatternLightUpwardDiagonal
= 22;
53 const long msoPatternLightVertical
= 20;
54 const long msoPatternMixed
= -2;
55 const long msoPatternNarrowHorizontal
= 30;
56 const long msoPatternNarrowVertical
= 29;
57 const long msoPatternOutlinedDiamond
= 41;
58 const long msoPatternPlaid
= 42;
59 const long msoPatternShingle
= 47;
60 const long msoPatternSmallCheckerBoard
= 17;
61 const long msoPatternSmallConfetti
= 37;
62 const long msoPatternSmallGrid
= 23;
63 const long msoPatternSolidDiamond
= 39;
64 const long msoPatternSphere
= 43;
65 const long msoPatternTrellis
= 18;
66 const long msoPatternWave
= 48;
67 const long msoPatternWeave
= 44;
68 const long msoPatternWideDownwardDiagonal
= 25;
69 const long msoPatternWideUpwardDiagonal
= 26;
70 const long msoPatternZigZag
= 38;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */