Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RefactorPluginInfrastructure-2522/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/ExcelCalculationOption.cs @ 13401

Last change on this file since 13401 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 366 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace OfficeOpenXml.FormulaParsing
7{
8    public class ExcelCalculationOption
9    {
10        public ExcelCalculationOption()
11        {
12            AllowCirculareReferences = false;
13        }
14        public bool AllowCirculareReferences { get; set; }
15    }
16}
Note: See TracBrowser for help on using the repository browser.