selectionHeightStyle property

  1. @override
BoxHeightStyle selectionHeightStyle
override

Controls how tall the selection highlight boxes are computed to be.

See ui.BoxHeightStyle for details on available styles.

Implementation

@override
ui.BoxHeightStyle get selectionHeightStyle => _selectionHeightStyle;
void selectionHeightStyle=(BoxHeightStyle value)

Implementation

set selectionHeightStyle(ui.BoxHeightStyle value) {
  if (_selectionHeightStyle == value) {
    return;
  }
  _selectionHeightStyle = value;
  markNeedsPaint();
}