|
|
|
|
|
WhereToSearch
Property
Description:
This property can have four different values:
-
BeginningOfRecord
- returns only the records which starts with search term
-
EndOfRecord
- returns only the records which end with search term.
-
MiddleOfRecord
- this is default value, returns the records which contain search term on any
place in record
-
ExactRecord
- record value must be exact same like the search term
Data type:
enuWhereToSearch
Default value: enuWhereToSearch.MiddleOfRecord
Example:
If you need to find database records which starts with search word:
SearchControl1.WhereToSearch = enuWhereToSearch.BeginningOfRecord;
|
|
|
|
|
|