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 powerpoint
{
21 constants MsoAnimProperty
{
22 const long msoAnimColor
= 7;
23 const long msoAnimHeight
= 4;
24 const long msoAnimNone
= 0;
25 const long msoAnimOpacity
= 5;
26 const long msoAnimRotation
= 6;
27 const long msoAnimShapeFillBackColor
= 1007;
28 const long msoAnimShapeFillColor
= 1005;
29 const long msoAnimShapeFillOn
= 1004;
30 const long msoAnimShapeFillOpacity
= 1006;
31 const long msoAnimShapeLineColor
= 1009;
32 const long msoAnimShapeLineOn
= 1008;
33 const long msoAnimShapePictureBrightness
= 1001;
34 const long msoAnimShapePictureContrast
= 1000;
35 const long msoAnimShapePictureGamma
= 1002;
36 const long msoAnimShapePictureGrayscale
= 1003;
37 const long msoAnimShapeShadowColor
= 1012;
38 const long msoAnimShapeShadowOffsetX
= 1014;
39 const long msoAnimShapeShadowOffsetY
= 1015;
40 const long msoAnimShapeShadowOn
= 1010;
41 const long msoAnimShapeShadowOpacity
= 1013;
42 const long msoAnimShapeShadowType
= 1011;
43 const long msoAnimTextBulletCharacter
= 111;
44 const long msoAnimTextBulletColor
= 114;
45 const long msoAnimTextBulletFontName
= 112;
46 const long msoAnimTextBulletNumber
= 113;
47 const long msoAnimTextBulletRelativeSize
= 115;
48 const long msoAnimTextBulletStyle
= 116;
49 const long msoAnimTextBulletType
= 117;
50 const long msoAnimTextFontBold
= 100;
51 const long msoAnimTextFontColor
= 101;
52 const long msoAnimTextFontEmboss
= 102;
53 const long msoAnimTextFontItalic
= 103;
54 const long msoAnimTextFontName
= 104;
55 const long msoAnimTextFontShadow
= 105;
56 const long msoAnimTextFontSize
= 106;
57 const long msoAnimTextFontStrikeThrough
= 110;
58 const long msoAnimTextFontSubscript
= 107;
59 const long msoAnimTextFontSuperscript
= 108;
60 const long msoAnimTextFontUnderline
= 109;
61 const long msoAnimVisibility
= 8;
62 const long msoAnimWidth
= 3;
63 const long msoAnimX
= 1;
64 const long msoAnimY
= 2;
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */