Schnittstelle TabView.OnPageDetached

Umschließende Klasse:
TabView
Funktionsschnittstelle:
Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.

@FunctionalInterface public static interface TabView.OnPageDetached
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    onPageDetached(TabPage page, int position)
    Emitted when a page has been removed or transferred to another view.
  • Methodendetails

    • onPageDetached

      void onPageDetached(@Nonnull TabPage page, int position)
      Emitted when a page has been removed or transferred to another view.

      A typical reason to connect to this signal would be to disconnect signal
      handlers connected in the [signal@TabView::page-attached] handler.

      It is important not to try and destroy the page child in the handler of
      this function as the child might merely be moved to another window; use
      child dispose handler for that or do it in sync with your
      [method@TabView.close_page_finish] calls.
      Parameter:
      page - a page of @self
      position - the position of the removed page, starting from 0