Beispiel #1
0
 public KDSearchScope()
 {
     this.columnName   = "";
     this.kDSearchType = KDSearchType.Default;
     this.minClosed    = false;
     this.maxClosed    = false;
 }
Beispiel #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;
 }
Beispiel #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;
 }
 public KDSearchScope(string column, KDSearchType searchType, string _matchString)
 {
     this.columnName = column;
     this.kDSearchType = searchType;
     this.matchString = _matchString;
 }
Beispiel #5
0
 public KDSearchScope(string column, KDSearchType searchType, string _matchString)
 {
     this.columnName   = column;
     this.kDSearchType = searchType;
     this.matchString  = _matchString;
 }