maxMatches property

int get maxMatches

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 maxMatches (int value)

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);
}