Free cookie consent management tool by TermsFeed Policy Generator

source: branches/gteufl/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/3.1.3/EPPlus-3.1.3/DataValidation/Contracts/IExcelDataValidationWithFormula.cs @ 12858

Last change on this file since 12858 was 9580, checked in by sforsten, 12 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: 376 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using OfficeOpenXml.DataValidation.Formulas.Contracts;
6
7namespace OfficeOpenXml.DataValidation.Contracts
8{
9    public interface IExcelDataValidationWithFormula<T> : IExcelDataValidation
10        where T : IExcelDataValidationFormula
11    {
12        T Formula { get; }
13    }
14}
Note: See TracBrowser for help on using the repository browser.