📄 value.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// A content element that encloses a single unit of data content.
/// </summary>
public class value : element_id
{
public value() : base("value") { }
public bool @override
{
set
{
this.SetAttribute("override", value);
}
}
protected valueType _internalvalue;
public valueType internalvalue
{
get
{
return _internalvalue;
}
set
{
this.RemoveChild(_internalvalue);
_internalvalue = value;
this.AddChild(_internalvalue);
}
}
protected graph _graph;
public graph graph
{
get
{
return _graph;
}
set
{
this.RemoveChild(_graph);
_graph = value;
this.AddChild(_graph);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -