blob: a94d5ef07eadb9dced4f55e47d9687b6620bfcab [file] [log] [blame]
namespace OfficeOpenXml.FormulaParsing;
public class ExcelCalculationOption {
public ExcelCalculationOption() {
AllowCirculareReferences = false;
}
public bool AllowCirculareReferences { get; set; }
}