Пример #1
0
 public TagSourceAttribute(Type type, String key = "Oid", String valueFormat = null)
 {
     aType        = type;
     aKey         = key;
     aValueFormat = valueFormat;
     aKind        = TagSourceKind.TypeSource;
 }
Пример #2
0
 public TagSourceAttribute(Type type, String key = "Oid", String valueFormat = "", String criteria = "", String imageName = "", String Sorting = "")
 {
     aType = type;
     if (String.Concat(criteria) != "")
     {
         aCriteria = CriteriaOperator.Parse(criteria);
     }
     aKey         = key;
     aValueFormat = valueFormat;
     aImageName   = imageName;
     aKind        = TagSourceKind.TypeSource;
     aSort        = Sorting;
 }
Пример #3
0
 public TagSourceAttribute(String property, String key = "Oid", String valueFormat = "", String criteria = "", String imageName = "", String Sorting = "")
 {
     aValues = property;
     if (String.Concat(criteria) != "")
     {
         aCriteria = CriteriaOperator.Parse(criteria);
     }
     aKey         = key;
     aValueFormat = valueFormat;
     aImageName   = imageName;
     aKind        = TagSourceKind.Values;
     aSort        = Sorting;
 }
Пример #4
0
 public TagSourceAttribute(String commaValues, String imageName = "")
 {
     aValues    = commaValues;
     aKind      = TagSourceKind.Values;
     aImageName = imageName;
 }
Пример #5
0
 public TagSourceAttribute(Type type, String key = "Oid")
 {
     aType = type;
     aKey  = key;
     aKind = TagSourceKind.TypeSource;
 }
Пример #6
0
 public TagSourceAttribute(Type type)
 {
     aType = type;
     aKind = TagSourceKind.TypeSource;
 }
Пример #7
0
 public TagSourceAttribute(String commaValues)
 {
     aValues = commaValues;
     aKind   = TagSourceKind.Values;
 }