📄 externalreference.cs
字号:
using System;
namespace com.use.wfp.xpdl.elements
{
/// <summary>
/// ExternalReference 的摘要说明。
/// </summary>
public class ExternalReference:BaseElement
{
private string xref;
public String GetXref()
{
return GetAttribute(xref, out xref, "xref");
}
private string location;
public String GetLocation()
{
return GetAttribute(location, out location, "location");
}
private string @namespace;
public String GetName()
{
return GetAttribute(@namespace, out @namespace, "namespace");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -