⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 placement.cs

📁 PDF文档生成解析使用的库,可以用来改写自己的文档格式
💻 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 + -