| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Propretity;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 转到子流程
- /// </summary>
- [IVRAttribute("CELL_SUBFLOW", Model.IVRSerializerType.节点,1)]
- public class IVRSubflow : IVRControlBase
- {
- public IVRSubflow(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRSubflow(this);
-
- }
-
- [IVRAttribute("FlowName", Model.IVRSerializerType.元素, 2)]
- public string FlowName
- { get; set; }
- [IVRAttribute("BeginPos", Model.IVRSerializerType.元素, 3, IsPosPoint = true)]
- public IVRControlBase BeginPos
- { get; set; }
- [IVRAttribute("Next", Model.IVRSerializerType.元素, 4, IsPosPoint = true)]
- public IVRControlBase Next
- { get; set; }
- }
- }
|