-
Notifications
You must be signed in to change notification settings - Fork 1
/
WorkbookOption.cs
55 lines (50 loc) · 1.65 KB
/
WorkbookOption.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.Text;
/****************************************************************
* Copyright © (2022) www.fayelf.com All Rights Reserved. *
* Author : jacky *
* QQ : 7092734 *
* Email : [email protected] *
* Site : www.fayelf.com *
* Create Time : 2022-10-04 11:58:20 *
* Version : v 1.0.0 *
* CLR Version : 4.0.30319.42000 *
*****************************************************************/
namespace XiaoFeng.Excel
{
/// <summary>
/// 工作文档选项
/// </summary>
public class WorkbookOption
{
#region 构造器
/// <summary>
/// 无参构造器
/// </summary>
public WorkbookOption()
{
}
#endregion
#region 属性
/// <summary>
/// 是否包含隐藏表
/// </summary>
public Boolean IncludeHiddenSheet { get; set; } = true;
/// <summary>
/// 是否包含隐藏行
/// </summary>
public Boolean IncludeHiddenRow { get; set; } = true;
/// <summary>
/// 是否包含隐藏列
/// </summary>
public Boolean IncludeHiddenColumn { get; set; } = true;
/// <summary>
/// 是否加载所有表
/// </summary>
public Boolean LoadSheets { get; set; } = false;
#endregion
#region 方法
#endregion
}
}