You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
830 B
C#

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