📄 participant.cs
字号:
using System;
namespace com.use.wfp.xpdl.elements
{
/// <summary>
/// Participant 的摘要说明。
/// </summary>
public class Participant:BaseElementWithIdName
{
private BaseElement ParticipantType;
public ParticipantType GetParticipantType()
{
return (ParticipantType)GetChild( ParticipantType, out ParticipantType, "ParticipantType");
}
/// <remarks/>
private string Description;
public string GetDescription()
{
return GetChildText(Description, out Description, "Description");
}
/// <remarks/>
private BaseElement ExternalReference;
public ExternalReference GetExternalReference()
{
return (ExternalReference)GetChild( ExternalReference, out ExternalReference, "ExternalReference");
}
/// <remarks/>
private BaseElement ExtendedAttributes;
public ExtendedAttributes GetExtendedAttributes()
{
return (ExtendedAttributes)GetChild( ExtendedAttributes, out ExtendedAttributes, "ExtendedAttributes");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -