| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.IVRControl;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 数据集映射节点
- /// </summary>
- [IVRAttribute("CELL_RECORDSET", Model.IVRSerializerType.节点,1)]
- public class IVRRecordSet : IVRControlBase
- {
- public IVRRecordSet(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRRecordSet(this);
- Map = new List<IVRDefaultVar>();
- }
- /// <summary>
- /// :待映射的变量小于记录集个数时跳转的节点编号。
- /// </summary>
- [IVRAttribute("LPos", Model.IVRSerializerType.元素,2, IsPosPoint = true)]
- public IVRControlBase LPos
- { get; set; }
- /// <summary>
- /// :待映射的变量等于记录集个数时跳转的节点编号。
- /// </summary>
- [IVRAttribute("EPos", Model.IVRSerializerType.元素,3, IsPosPoint = true)]
- public IVRControlBase EPos
- { get; set; }
- /// <summary>
- /// :待映射的变量大于记录集个数时跳转的节点编号。
- /// </summary>
- [IVRAttribute("GPos", Model.IVRSerializerType.元素,4, IsPosPoint = true)]
- public IVRControlBase GPos
- { get; set; }
- [IVRAttribute("Map", Model.IVRSerializerType.节点,5, Object = typeof(List<IVRDefaultVar>))]
- public List<IVRDefaultVar> Map
- { get; set; }
- }
- }
|