selectsTextOnActivate property

bool get selectsTextOnActivate

Gets or sets whether to select (highlight) the editable text when the TextEditingTool is activated. The default is true.

Implementation

_i2.bool get selectsTextOnActivate => _i4.getProperty(
      this,
      'selectsTextOnActivate',
    );
set selectsTextOnActivate (bool value)

Implementation

set selectsTextOnActivate(_i2.bool value) {
  _i4.setProperty(
    this,
    'selectsTextOnActivate',
    value,
  );
}