Last change
on this file since 9931 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:
602 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using OfficeOpenXml.DataValidation.Formulas.Contracts;
|
---|
6 |
|
---|
7 | namespace OfficeOpenXml.DataValidation.Contracts
|
---|
8 | {
|
---|
9 | /// <summary>
|
---|
10 | /// Interface for a data validation with two formulas
|
---|
11 | /// </summary>
|
---|
12 | /// <typeparam name="T"></typeparam>
|
---|
13 | public interface IExcelDataValidationWithFormula2<T> : IExcelDataValidationWithFormula<T>
|
---|
14 | where T : IExcelDataValidationFormula
|
---|
15 | {
|
---|
16 | /// <summary>
|
---|
17 | /// Formula 2
|
---|
18 | /// </summary>
|
---|
19 | T Formula2 { get; }
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.