Esempio n. 1
0
 public KDSearchScope()
 {
     this.columnName   = "";
     this.kDSearchType = KDSearchType.Default;
     this.minClosed    = false;
     this.maxClosed    = false;
 }
Esempio n. 2
0
 public KDSearchScope(string column, KDSearchType searchType, string _matchString)
 {
     this.columnName   = "";
     this.kDSearchType = KDSearchType.Default;
     this.minClosed    = false;
     this.maxClosed    = false;
     this.columnName   = column;
     this.kDSearchType = searchType;
     this.matchString  = _matchString;
 }
Esempio n. 3
0
 public KDSearchScope(string column, IComparable min, bool _minClosed, IComparable max, bool _maxClosed)
 {
     this.columnName   = "";
     this.kDSearchType = KDSearchType.Default;
     this.minClosed    = false;
     this.maxClosed    = false;
     this.columnName   = column;
     this.minValue     = min;
     this.maxValue     = max;
     this.minClosed    = _minClosed;
     this.maxClosed    = _maxClosed;
 }
Esempio n. 4
0
 public KDSearchScope(string column, KDSearchType searchType, string _matchString)
 {
     this.columnName = column;
     this.kDSearchType = searchType;
     this.matchString = _matchString;
 }
Esempio n. 5
0
 public KDSearchScope(string column, KDSearchType searchType, string _matchString)
 {
     this.columnName   = column;
     this.kDSearchType = searchType;
     this.matchString  = _matchString;
 }