halign.cs

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

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

namespace AnotherPDFLib.XFA
{
    /// <summary>
    /// Horizontal text alignment control.
    /// </summary>
    public enum hAlign
    {
        /// <summary>
        /// Center horizontally within the available region.
        /// </summary>
        center,

        /// <summary>
        /// Left-align the last line and spread-justify the rest.
        /// </summary>
        justify,

        /// <summary>
        /// Spread-justify all lines to fill the available region.
        /// </summary>
        justifyAll,

        /// <summary>
        /// Align with left edge of the available region.
        /// </summary>
        left,

        /// <summary>
        /// Align the radix indicator (decimal point or comma, depending upon locale)
        /// at the location specified by the radixOffset property of the para element.
        /// If there is no radix indicator assume that the last character represents the units column.
        /// </summary>
        radix,

        /// <summary>
        /// Align with right edge of the available region.
        /// </summary>
        right
    }
}

⌨️ 快捷键说明

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