📄 field.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// A container element that describes a single interactive container capable of capturing and presenting data
/// content.
/// </summary>
public class field : container
{
public field() : base("field") { }
public access access
{
set
{
this.SetAttribute("access", value);
}
}
public char accessKey
{
set
{
this.SetAttribute("accessKey", value);
}
}
public string locale
{
set
{
this.SetAttribute("locale", value);
}
}
public int rotate
{
set
{
this.SetAttribute("rotate", value);
}
}
protected bind _bind;
public bind bind
{
get
{
if (_bind == null)
{
_bind = new bind();
this.AddChild(_bind);
}
return _bind;
}
set
{
this.RemoveChild(_bind);
_bind = value;
this.AddChild(_bind);
}
}
protected calculate _calculate;
public calculate calculate
{
get
{
if (_calculate == null)
{
_calculate = new calculate();
this.AddChild(_calculate);
}
return _calculate;
}
set
{
this.RemoveChild(_calculate);
_calculate = value;
this.AddChild(_calculate);
}
}
protected validate _validate;
public validate validate
{
get
{
if (_validate == null)
{
_validate = new validate();
this.AddChild(_validate);
}
return _validate;
}
set
{
this.RemoveChild(_validate);
_validate = value;
this.AddChild(_validate);
}
}
protected font _font;
public font font
{
get
{
if (_font == null)
{
_font = new font();
this.AddChild(_font);
}
return _font;
}
set
{
this.RemoveChild(_font);
_font = value;
this.AddChild(_font);
}
}
protected format _format;
public format format
{
get
{
if (_format == null)
{
_format = new format();
this.AddChild(_format);
}
return _format;
}
set
{
this.RemoveChild(_format);
_format = value;
this.AddChild(_format);
}
}
protected ui _ui;
public ui ui
{
get
{
if (_ui == null)
{
_ui = new ui();
this.AddChild(_ui);
}
return _ui;
}
set
{
this.RemoveChild(_ui);
_ui = value;
this.AddChild(_ui);
}
}
protected value _value;
public value value
{
get
{
if (_value == null)
{
_value = new value();
this.AddChild(_value);
}
return _value;
}
set
{
this.RemoveChild(_value);
_value = value;
this.AddChild(_value);
}
}
protected caption _caption;
public caption caption
{
get
{
if (_caption == null)
{
_caption = new caption();
this.AddChild(_caption);
}
return _caption;
}
set
{
this.RemoveChild(_caption);
_caption = value;
this.AddChild(_caption);
}
}
protected desc _desc;
public desc desc
{
get
{
if (_desc == null)
{
_desc = new desc();
this.AddChild(_desc);
}
return _desc;
}
set
{
this.RemoveChild(_desc);
_desc = value;
this.AddChild(_desc);
}
}
public void Add(connect connect)
{
this.AddChild(connect);
}
public void Add(@event @event)
{
this.AddChild(@event);
}
public void Add(items items)
{
this.AddChild(items);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -