onDidHide property

Event<void> get onDidHide

An event signaling when this input UI is hidden.

There are several reasons why this UI might have to be hidden and the extension will be notified through {@link QuickInput.onDidHide}. (Examples include: an explicit call to {@link QuickInput.hide}, the user pressing Esc, some other input UI opening, etc.)

Implementation

_i3.Event<void> get onDidHide => _i5.getProperty(
      this,
      'onDidHide',
    );
set onDidHide (Event<void> value)

Implementation

set onDidHide(_i3.Event<void> value) {
  _i5.setProperty(
    this,
    'onDidHide',
    value,
  );
}