Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / offapi / com / sun / star / sheet / ConditionOperator2.idl
blob55df9c995b2f6c52465cb5aeab4f1591a7099819
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 */
11 module com { module sun { module star { module sheet {
14 /** is used to specify the type of XSheetCondition2.
16 constants ConditionOperator2
19 /** no condition is specified.
21 const long NONE = 0;
24 /** value has to be equal to the specified value.
26 const long EQUAL = 1;
29 /** the value must not be equal to the specified value.
31 const long NOT_EQUAL = 2;
34 /** the value has to be greater than the specified value.
36 const long GREATER = 3;
39 /** the value has to be greater than or equal to the specified value.
41 const long GREATER_EQUAL = 4;
44 /** the value has to be less than the specified value.
46 const long LESS = 5;
49 /** the value has to be less than or equal to the specified value.
51 const long LESS_EQUAL = 6;
54 /** the value has to be between the two specified values.
56 const long BETWEEN = 7;
59 /** the value has to be outside of the two specified values.
61 const long NOT_BETWEEN = 8;
64 /** the specified formula has to give a non-zero result.
66 const long FORMULA = 9;
69 /** Conditionally format duplicate values
71 const long DUPLICATE = 10;
74 /** Conditionally format non-duplicate values
76 const long NOT_DUPLICATE = 11;
80 }; }; }; };
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */