-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPdfReaderFitMode.cs
More file actions
31 lines (26 loc) · 748 Bytes
/
PdfReaderFitMode.cs
File metadata and controls
31 lines (26 loc) · 748 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
// 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 or https://argozhang.github.io/
using System.ComponentModel;
namespace BootstrapBlazor.Components;
/// <summary>
/// PdfReader 文档适配模式
/// </summary>
public enum PdfReaderFitMode
{
/// <summary>
/// 实际大小
/// </summary>
[Description("page-actual")]
PageActual,
/// <summary>
/// 页面宽度
/// </summary>
[Description("page-width")]
PageWidth,
/// <summary>
/// 页面高度
/// </summary>
[Description("page-height")]
PageHeight
}