ivr流程编辑器

IVRSubflow.cs 958B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using HySoft.IVRFlowEditor.Propretity;
  6. using HySoft.IVRFlowEditor.Model;
  7. namespace HySoft.IVRFlowEditor.IVRControlUtility
  8. {
  9. /// <summary>
  10. /// 转到子流程
  11. /// </summary>
  12. [IVRAttribute("CELL_SUBFLOW", Model.IVRSerializerType.节点,1)]
  13. public class IVRSubflow : IVRControlBase
  14. {
  15. public IVRSubflow(string name)
  16. {
  17. this.Name = name;
  18. CtlProperty = new CtlIVRSubflow(this);
  19. }
  20. [IVRAttribute("FlowName", Model.IVRSerializerType.元素, 2)]
  21. public string FlowName
  22. { get; set; }
  23. [IVRAttribute("BeginPos", Model.IVRSerializerType.元素, 3, IsPosPoint = true)]
  24. public IVRControlBase BeginPos
  25. { get; set; }
  26. [IVRAttribute("Next", Model.IVRSerializerType.元素, 4, IsPosPoint = true)]
  27. public IVRControlBase Next
  28. { get; set; }
  29. }
  30. }