maxMatches property
Get the maximum number of matches.
Default is 40.
Returns
- Maximum number of matches.
Implementation
int get maxMatches {
final OperationResult resultString = objectMethod(
_pointerId,
'SearchPreferences',
'getmaxmatches',
);
return resultString['result'];
}
Set the maximum number of matches.
Default is 40.
Parameters
- IN value Maximum number of matches.
Implementation
set maxMatches(final int value) {
objectMethod(_pointerId, 'SearchPreferences', 'setmaxmatches', args: value);
}