Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / sheet / ConditionOperator2.idl
blobe4d42d4247a3d3baa23bd65cd534b508f2b5e92a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #ifndef __com_sun_star_sheet_ConditionOperator2_idl__
11 #define __com_sun_star_sheet_ConditionOperator2_idl__
14 module com { module sun { module star { module sheet {
17 /** is used to specify the type of XSheetCondition2.
19 constants ConditionOperator2
22 /** no condition is specified.
24 const long NONE = 0;
27 /** value has to be equal to the specified value.
29 const long EQUAL = 1;
32 /** the value must not be equal to the specified value.
34 const long NOT_EQUAL = 2;
37 /** the value has to be greater than the specified value.
39 const long GREATER = 3;
42 /** the value has to be greater than or equal to the specified value.
44 const long GREATER_EQUAL = 4;
47 /** the value has to be less than the specified value.
49 const long LESS = 5;
52 /** the value has to be less than or equal to the specified value.
54 const long LESS_EQUAL = 6;
57 /** the value has to be between the two specified values.
59 const long BETWEEN = 7;
62 /** the value has to be outside of the two specified values.
64 const long NOT_BETWEEN = 8;
67 /** the specified formula has to give a non-zero result.
69 const long FORMULA = 9;
72 /** Conditionally format duplicate values
74 const long DUPLICATE = 10;
77 /** Conditionally format non-duplicate values
79 const long NOT_DUPLICATE = 11;
83 }; }; }; };
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */