Example #1
0
        public static bool CanEditText(PrefillType type)
        {
            switch (type)
            {
            case PrefillType.Literal:
            case PrefillType.DateTime:
                return(true);

            default:
                return(false);
            }
        }
Example #2
0
 public Prefill(PrefillType type, string text = null)
 {
     this.type = type;
     this.text = text;
 }