-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEmbedPDFScrollStrategy.cs
More file actions
28 lines (24 loc) · 806 Bytes
/
EmbedPDFScrollStrategy.cs
File metadata and controls
28 lines (24 loc) · 806 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
// 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">Scroll strategy enumeration</para>
/// </summary>
public enum EmbedPDFScrollStrategy
{
/// <summary>
/// <para lang="zh">垂直方向</para>
/// <para lang="en">Vertical</para>
/// </summary>
[Description("vertical")]
Vertical,
/// <summary>
/// <para lang="zh">水平方向</para>
/// <para lang="en">Horizontal</para>
/// </summary>
[Description("horizontal")]
Horizontal
}