anchortype.cs

来自「PDF文件格式解析库源代码」· CS 代码 · 共 58 行

CS
58
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace AnotherPDFLib.XFA
{
    /// <summary>
    /// anchor type when placed with positioned layout strategy.
    /// </summary>
    public enum anchorType
    {
        /// <summary>
        /// Top left corner of the nominal extent.
        /// </summary>
        topLeft,

        /// <summary>
        /// Center of the top edge of the nominal extent.
        /// </summary>
        topCenter,

        /// <summary>
        /// Top right corner of the nominal extent.
        /// </summary>
        topRight,

        /// <summary>
        /// Middle of the left edge of the nominal extent.
        /// </summary>
        middleLeft,

        /// <summary>
        /// Middle of the nominal extent.
        /// </summary>
        middleCenter,

        /// <summary>
        /// Middle of the right edge of the nominal extent.
        /// </summary>
        middleRight,

        /// <summary>
        /// Bottom left corner of the nominal extent.
        /// </summary>
        bottomLeft,

        /// <summary>
        /// Center of the bottom edge of the nominal extent.
        /// </summary>
        bottomCenter,

        /// <summary>
        /// Bottom right corner of the nominal extent.
        /// </summary>
        bottomRight
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?