📄 para.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// A formatting element that specifies default paragraph and alignment properties to be applied to the
/// content of an enclosing container.
/// </summary>
public class para : element_id
{
public para() : base("para") { }
public hAlign hAlign
{
set
{
this.SetAttribute("hAlign", value);
}
}
public measurement lineHeight
{
set
{
this.SetAttribute("lineHeight", value);
}
}
public measurement marginLeft
{
set
{
this.SetAttribute("marginLeft", value);
}
}
public measurement marginRight
{
set
{
this.SetAttribute("marginRight", value);
}
}
public measurement radixOffset
{
set
{
this.SetAttribute("radixOffset", value);
}
}
public measurement spaceAbove
{
set
{
this.SetAttribute("spaceAbove", value);
}
}
public measurement spaceBelow
{
set
{
this.SetAttribute("spaceBelow", value);
}
}
public measurement textIndent
{
set
{
this.SetAttribute("textIndent", value);
}
}
public string preserve
{
set
{
this.SetAttribute("preserve", value);
}
}
public string tabDefault
{
set
{
this.SetAttribute("tabDefault", value);
}
}
public string tabStops
{
set
{
this.SetAttribute("tabStops", value);
}
}
public vAlign vAlign
{
set
{
this.SetAttribute("vAlign", value);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -