Base interface for all UI elements returned by UIContainer add methods.

interface UIElement {
    Hide(): void;
    Show(): void;
    Destroy(): void;
}

Hierarchy (View Summary)

Methods

Methods

  • Hides the element without destroying it. Call Show() to make it visible again.

    Returns void

  • Makes a previously hidden element visible again.

    Returns void

  • Permanently removes the element from the UI panel.

    Returns void