-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEmbedPDFTabBarMode.cs
More file actions
35 lines (30 loc) · 964 Bytes
/
EmbedPDFTabBarMode.cs
File metadata and controls
35 lines (30 loc) · 964 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
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). 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
using System.ComponentModel;
namespace BootstrapBlazor.Components;
/// <summary>
/// <para lang="zh">标签模式枚举</para>
/// <para lang="en">Tab bar mode enumeration</para>
/// </summary>
public enum EmbedPDFTabBarMode
{
/// <summary>
/// <para lang="zh">始终显示</para>
/// <para lang="en">Always show</para>
/// </summary>
[Description("always")]
Always,
/// <summary>
/// <para lang="zh">多标签模式</para>
/// <para lang="en">Multiple tabs mode</para>
/// </summary>
[Description("multiple")]
Multiple,
/// <summary>
/// <para lang="zh">不显示</para>
/// <para lang="en">Never show</para>
/// </summary>
[Description("never")]
Never
}