PCUI API Reference - v5.2.0
    Preparing search index...

    Interface IFocusable

    The interface for elements that can be focused.

    interface IFocusable {
        blur(): void;
        focus(select?: boolean): void;
    }

    Implemented by

    Index

    Methods

    Methods

    • Focus on the element. If the input contains text and select is provided, the text will be selected on focus.

      Parameters

      • Optionalselect: boolean

      Returns void