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 sheet
{
24 /** used to specify the category of a spreadsheet function.
26 published constants FunctionCategory
29 /** specifies a database function.
31 const long DATABASE
= 1;
34 /** specifies a function that calculates with dates and/or times.
36 const long DATETIME
= 2;
39 /** specifies a financial function.
41 const long FINANCIAL
= 3;
44 /** specifies a function that returns information about the cell,
45 the cell contents or the current formula.
47 const long INFORMATION
= 4;
50 /** specifies a boolean function.
52 const long LOGICAL
= 5;
55 /** specifies a common mathematical function
57 const long MATHEMATICAL
= 6;
60 /** specifies a matrix function.
62 const long MATRIX
= 7;
65 /** specifies a statistical function
67 const long STATISTICAL
= 8;
70 /** specifies a function that returns information using the spreadsheet
71 contents or specific cell positions.
73 const long SPREADSHEET
= 9;
76 /** specifies a text function.
81 /** specifies a common add-in function.
83 const long ADDIN
= 11;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */