📄 bind.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// An element that controls the behavior during merge operations of its enclosing element.
/// </summary>
public class bind : element_proto
{
public bind() : base("bind") { }
public match match
{
set
{
this.SetAttribute("match", value);
}
}
public string @ref
{
set
{
this.SetAttribute("ref", value);
}
}
protected picture _picture;
public picture picture
{
get
{
if (_picture == null)
{
_picture = new picture();
this.AddChild(_picture);
}
return _picture;
}
set
{
this.RemoveChild(_picture);
_picture = value;
this.AddChild(_picture);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -