namespace com.azkoss.excellite { using System; /// ///Options specified when reading XLS files. /// [Flags] public enum XlsOptions { // Fields /// ///Do not preserve records. Only records fully supported by ExcelLite API will be loaded. /// None = 0, /// ///Preserve all possible information. /// PreserveAll = 7, /// ///Preserve global (workbook) records. /// PreserveGlobalRecords = 1, /// ///Preserve summaries. /// PreserveSummaries = 4, /// ///Preserve worksheet records. /// PreserveWorksheetRecords = 2 } }