externalpackage.cs
来自「xpdl的c#解析器 完全依照xpdl标准」· CS 代码 · 共 23 行
CS
23 行
using System;
namespace com.use.wfp.xpdl.elements
{
/// <summary>
/// ExternalPackage 的摘要说明。
/// </summary>
public class ExternalPackage:BaseElement
{
private BaseElement ExtendedAttributes;
public ExtendedAttributes GetExtendedAttributes()
{
return (ExtendedAttributes)GetChild( ExtendedAttributes, out ExtendedAttributes, "ExtendedAttributes");
}
private string href;
public String GetHref()
{
return GetAttribute(href, out href, "href");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?