HomePCUI API Reference - v6.1.4
    Preparing search index...

    Interface IBindableArgs<T>

    The interface for arguments for bindable elements.

    interface IBindableArgs<T = unknown> {
        renderChanges?: boolean;
        value?: T;
        values?: T[];
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Index

    Properties

    renderChanges?: boolean

    If true each input will flash on changes.

    value?: T

    Sets the value of the Element.

    values?: T[]

    Sets multiple values to the Element. It is up to the Element to determine how to display them.