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

    Interface IBindable

    The interface for bindable elements.

    interface IBindable {
        get renderChanges(): boolean;
        set renderChanges(value: boolean): void;
        get value(): any;
        set value(values: any): void;
        get values(): any[];
        set values(values: any[]): void;
    }

    Implemented by

    Index

    Accessors

    • get values(): any[]

      Gets multiple values on the Element.

      Returns any[]

    • set values(values: any[]): void

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

      Parameters

      • values: any[]

      Returns void