value.cs
来自「PDF文件格式解析库源代码」· CS 代码 · 共 56 行
CS
56 行
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 + =
减小字号Ctrl + -
显示快捷键?