Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ExportSymbolicDataAnalysisSolutions/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/3.1.3/EPPlus-3.1.3/DataValidation/Contracts/IExcelDataValidationWithOperator.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: 443 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace OfficeOpenXml.DataValidation.Contracts
7{
8    /// <summary>
9    /// Represents a validation with an operator
10    /// </summary>
11    public interface IExcelDataValidationWithOperator
12    {
13        /// <summary>
14        /// Operator type
15        /// </summary>
16        ExcelDataValidationOperator Operator { get; set; }
17    }
18}
Note: See TracBrowser for help on using the repository browser.