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 WdTextureIndex
{
22 const long wdTexture10Percent
= 100;
23 const long wdTexture12Pt5Percent
= 125;
24 const long wdTexture15Percent
= 150;
25 const long wdTexture17Pt5Percent
= 175;
26 const long wdTexture20Percent
= 200;
27 const long wdTexture22Pt5Percent
= 225;
28 const long wdTexture25Percent
= 250;
29 const long wdTexture27Pt5Percent
= 275;
30 const long wdTexture2Pt5Percent
= 25;
31 const long wdTexture30Percent
= 300;
32 const long wdTexture32Pt5Percent
= 325;
33 const long wdTexture35Percent
= 350;
34 const long wdTexture37Pt5Percent
= 375;
35 const long wdTexture40Percent
= 400;
36 const long wdTexture42Pt5Percent
= 425;
37 const long wdTexture45Percent
= 450;
38 const long wdTexture47Pt5Percent
= 475;
39 const long wdTexture50Percent
= 500;
40 const long wdTexture52Pt5Percent
= 525;
41 const long wdTexture55Percent
= 550;
42 const long wdTexture57Pt5Percent
= 575;
43 const long wdTexture5Percent
= 50;
44 const long wdTexture60Percent
= 600;
45 const long wdTexture62Pt5Percent
= 625;
46 const long wdTexture65Percent
= 650;
47 const long wdTexture67Pt5Percent
= 675;
48 const long wdTexture70Percent
= 700;
49 const long wdTexture72Pt5Percent
= 725;
50 const long wdTexture75Percent
= 750;
51 const long wdTexture77Pt5Percent
= 775;
52 const long wdTexture7Pt5Percent
= 75;
53 const long wdTexture80Percent
= 800;
54 const long wdTexture82Pt5Percent
= 825;
55 const long wdTexture85Percent
= 850;
56 const long wdTexture87Pt5Percent
= 875;
57 const long wdTexture90Percent
= 900;
58 const long wdTexture92Pt5Percent
= 925;
59 const long wdTexture95Percent
= 950;
60 const long wdTexture97Pt5Percent
= 975;
61 const long wdTextureCross
= -11;
62 const long wdTextureDarkCross
= -5;
63 const long wdTextureDarkDiagonalCross
= -6;
64 const long wdTextureDarkDiagonalDown
= -3;
65 const long wdTextureDarkDiagonalUp
= -4;
66 const long wdTextureDarkHorizontal
= -1;
67 const long wdTextureDarkVertical
= -2;
68 const long wdTextureDiagonalCross
= -12;
69 const long wdTextureDiagonalDown
= -9;
70 const long wdTextureDiagonalUp
= -10;
71 const long wdTextureHorizontal
= -7;
72 const long wdTextureNone
= 0;
73 const long wdTextureSolid
= 1000;
74 const long wdTextureVertical
= -8;
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */