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

📄 layout.cs

📁 PDF文档生成解析使用的库,可以用来改写自己的文档格式
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -