template.cs

来自「PDF文档生成解析使用的库,可以用来改写自己的文档格式」· CS 代码 · 共 29 行

CS
29
字号
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;

namespace AnotherPDFLib.XFA
{
    /// <summary>
    /// An element that describes a template.
    /// One such element exists for each template and all other elements described in this specification are descendants of the template element.
    /// </summary>
    public class template : element
    {
        public template() : base("template")
        {
            this.SetAttribute("xmlns", "http://www.xfa.org/schema/xfa-template/2.4/");
        }

        /// <summary>
        /// Add a subform child.
        /// </summary>
        /// <param name="form"></param>
        public void Add(subform form)
        {
            this.AddChild(form);
        }
    }
}

⌨️ 快捷键说明

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