-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEnumPageMode.cs
More file actions
37 lines (30 loc) · 842 Bytes
/
EnumPageMode.cs
File metadata and controls
37 lines (30 loc) · 842 Bytes
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
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/
namespace BootstrapBlazor.Components;
/// <summary>
/// 页面模式
/// </summary>
public enum EnumPageMode
{
/// <summary>
/// 缩略图 / SidebarView.THUMBS;
/// </summary>
Thumbs,
/// <summary>
/// 大纲 / SidebarView.OUTLINE , non-standard
/// </summary>
Outline,
/// <summary>
/// 附件 / SidebarView.ATTACHMENTS , non-standard
/// </summary>
Attachments,
/// <summary>
/// 图层 / SidebarView.LAYERS , non-standard
/// </summary>
Layers,
/// <summary>
/// SidebarView.NONE;
/// </summary>
None
}