Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ExportSymbolicDataAnalysisSolutions/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/3.1.3/EPPlus-3.1.3/DataValidation/Formulas/Contracts/IExcelDataValidationFormulaList.cs @ 9580

Last change on this file since 9580 was 9580, checked in by sforsten, 11 years ago

#1730:

  • added SymbolicDataAnalysisExpressionExcelFormatter
  • changed modifiers in SymbolicExpressionTreeChart of methods SaveImageAsBitmap and SaveImageAsEmf to public
  • added menu item ExportSymbolicSolutionToExcelMenuItem to export a symbolic solution to an excel file
  • added EPPlus-3.1.3 to ExtLibs
File size: 1.9 KB
Line 
1/*
2 * You may amend and distribute as you like, but don't remove this header!
3 *
4 * EPPlus provides server-side generation of Excel 2007 spreadsheets.
5 * See http://www.codeplex.com/EPPlus for details.
6 *
7 * All rights reserved.
8 *
9 * EPPlus is an Open Source project provided under the
10 * GNU General Public License (GPL) as published by the
11 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
12 *
13 * The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
14 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
15 *
16 * The code for this project may be used and redistributed by any means PROVIDING it is
17 * not sold for profit without the author's written consent, and providing that this notice
18 * and the author's name and all copyright notices remain intact.
19 *
20 * All code and executables are provided "as is" with no warranty either express or implied.
21 * The author accepts no liability for any damage or loss of business that this product may cause.
22 *
23 *  Code change notes:
24 *
25 * Author             Change            Date
26 * ******************************************************************************
27 * Mats Alm                       Added                   2011-01-08
28 *******************************************************************************/
29using System;
30using System.Collections.Generic;
31using System.Linq;
32using System.Text;
33
34namespace OfficeOpenXml.DataValidation.Formulas.Contracts
35{
36    /// <summary>
37    /// Interface for a data validation of list type
38    /// </summary>
39    public interface IExcelDataValidationFormulaList : IExcelDataValidationFormula
40    {
41        /// <summary>
42        /// A list of value strings.
43        /// </summary>
44        IList<string> Values { get; }
45    }
46}
Note: See TracBrowser for help on using the repository browser.