using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DrawGraph
{
    public enum TextPrefix
    {
        /// 
        /// 用量
        /// 
        DD,
        /// 
        /// 箭头
        /// 
        AR,
        /// 
        /// 事件对象名,如药名,液体名
        /// 
        DN,
        /// 
        /// 单位
        /// 
        DU,
        /// 
        /// 总剂量
        /// 
        DT,
        /// 
        /// 图片
        /// 
        IM,
        /// 
        /// 麻醉单曲线上的点
        /// 
        PI,
        /// 
        /// 可编辑区域
        /// 
        ED,
        /// 
        /// 长方形
        /// 
        BT,
    }
    public enum ELineType
    {
        /// 
        /// 横线
        /// 
        Horizontal,
        /// 
        /// 竖线
        /// 
        Vertical,
    }
    public enum EIsBool
    {
        /// 
        /// 横线
        /// 
        True,
        /// 
        /// 竖线
        /// 
        False,
    }
    public enum EControlType {
        TextBox,
        CheckBox,
        RadioButtonList, 
        DateTimePicker,
        Directory,
        ComboBox,
        Panel
    }
    public enum EAlignType
    {
        Left,
        Center,
        Right
    }
    public enum EValidType
    {
        None, //不需要验证
        IsRequired, //是否必填
        IsNumber, //是数值型
    }
    /// 
    /// 实例解析器的对单个值的转换模式
    /// 
    public enum EConvertMode
    {
        NoConvert, CodeTableConvert
    }
}