rangeEnd property

  1. @Input()
set rangeEnd (bool isRangeEnd)

Controls whether entered dates are snapped to the beginning of the specified month (false), or to the end of the specified month (true).

Only used when isMonthInput is true.

Implementation

@Input()
set rangeEnd(bool isRangeEnd) {
  _isRangeEnd = isRangeEnd;
}