📄 exclgroup.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// A container element that describes a mutual exclusion relationship between a set of containers.
/// </summary>
public class exclGroup : container
{
public exclGroup() : base("exclGroup") { }
public access access
{
set
{
this.SetAttribute("access", value);
}
}
public string accessKey
{
set
{
this.SetAttribute("accessKey", value);
}
}
public layout layout
{
set
{
this.SetAttribute("layout", value);
}
}
public bool transient
{
set
{
this.SetAttribute("transient", 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 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);
}
}
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);
}
}
public void Add(connect connect)
{
this.AddChild(connect);
}
public void Add(@event @event)
{
this.AddChild(@event);
}
public void Add(field field)
{
this.AddChild(field);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -