layout.cs

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

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

namespace AnotherPDFLib.XFA
{
    /// <summary>
    /// Layout strategy.
    /// </summary>
    public enum layout
    {
        /// <summary>
        /// The content of the element is positioned according to 
        /// the to the location information expressed on the content elements.
        /// </summary>
        position,

        /// <summary>
        /// The content of the element is flowed in a direction proceeding
        /// from left to right and top to bottom.
        /// </summary>
        lr_tb,

        /// <summary>
        /// Reserved for future use.
        /// The content of the element is flowed in a direction proceeding from right to left and top to bottom.
        /// </summary>
        rl_tb,

        /// <summary>
        /// This is an inner element of a table, representing one or more rows. 
        /// The objects contained in this element are cells of the table and their height and width attributes, if any, are ignored.
        /// The cells are laid out from right to left and each one is adjusted to the height of the row and the width of
        /// one or more contiguous columns.
        /// </summary>
        row,

        /// <summary>
        /// This is the outer element of a table.
        /// Each of its child subforms or exclusion groups must have its layout property set to row.
        /// The rows of the table are laid out from top to bottom.
        /// </summary>
        table,

        /// <summary>
        /// The content of the element is flowed in a direction proceeding from top to bottom.
        /// </summary>
        tb
    }
}

⌨️ 快捷键说明

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