📄 placement.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// Specifies the placement of the caption.
/// </summary>
public enum placement
{
/// <summary>
/// The caption is located to the left of the content in a rectangular region
/// that spans the height of the margined nominal extent.
/// </summary>
left,
/// <summary>
/// The caption is located to the right of the content in a rectangular region
/// that spans the height of the margined nominal extent.
/// </summary>
right,
/// <summary>
/// The caption is located above the content in a rectangular region
/// that spans the width of the margined nominal extent.
/// </summary>
top,
/// <summary>
/// The caption is located below the content in a rectangular region
/// that spans the width of the margined nominal extent.
/// </summary>
bottom,
/// <summary>
/// The caption appears inline with, and prior to, the text content.
/// </summary>
inline
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -