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 .
21 module com
{ module sun
{ module star
{ module table
{
24 constants BorderLineStyle
28 const short NONE
= 0x7FFF;
30 /** Solid border line.
32 const short SOLID
= 0;
34 /** Dotted border line.
36 const short DOTTED
= 1;
38 /** Dashed border line.
40 const short DASHED
= 2;
42 /** Double border line. Widths of the lines and the gap are all equal,
43 and vary equally with the total width.
45 const short DOUBLE = 3;
47 /** Double border line with a thin line outside and a thick line
48 inside separated by a small gap.
50 const short THINTHICK_SMALLGAP
= 4;
52 /** Double border line with a thin line outside and a thick line
53 inside separated by a medium gap.
55 const short THINTHICK_MEDIUMGAP
= 5;
57 /** Double border line with a thin line outside and a thick line
58 inside separated by a large gap.
60 const short THINTHICK_LARGEGAP
= 6;
62 /** Double border line with a thick line outside and a thin line
63 inside separated by a small gap.
65 const short THICKTHIN_SMALLGAP
= 7;
67 /** Double border line with a thick line outside and a thin line
68 inside separated by a medium gap.
70 const short THICKTHIN_MEDIUMGAP
= 8;
72 /** Double border line with a thick line outside and a thin line
73 inside separated by a large gap.
75 const short THICKTHIN_LARGEGAP
= 9;
77 /** 3D embossed border line.
79 const short EMBOSSED
= 10;
81 /** 3D engraved border line.
83 const short ENGRAVED
= 11;
85 /** Outset border line.
87 const short OUTSET
= 12;
89 /** Inset border line.
91 const short INSET
= 13;
93 /** Finely dashed border line.
95 const short FINE_DASHED
= 14;
97 /** Double border line consisting of two fixed thin lines separated by a
100 const short DOUBLE_THIN
= 15;
102 /** Line consisting of a repetition of one dash and one dot. */
103 const short DASH_DOT
= 16;
105 /** Line consisting of a repetition of one dash and 2 dots. */
106 const short DASH_DOT_DOT
= 17;
108 /** Maximum valid border line style value.
110 const short BORDER_LINE_STYLE_MAX
= 17;
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */