📄 valign.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// Vertical text alignment control.
/// </summary>
public enum vAlign
{
/// <summary>
/// Align with top of the available region.
/// </summary>
top,
/// <summary>
/// Center vertically within the available region.
/// </summary>
middle,
/// <summary>
/// Align with bottom of the available region.
/// </summary>
bottom,
/// <summary>
/// Reserved for future use.
/// </summary>
tabDefault,
/// <summary>
/// Reserved for future use.
/// </summary>
tabStops
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -