placement.cs

来自「PDF文档生成解析使用的库,可以用来改写自己的文档格式」· CS 代码 · 共 42 行

CS
42
字号
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 + =
减小字号Ctrl + -
显示快捷键?