# IBindable

Interface

Source: https://github.com/playcanvas/pcui/blob/77ed2b8ba8660c9644049b0d1942652721e7a6c4/src/components/Element/index.ts#L35

The interface for bindable elements.

## Accessors

### renderChanges

```ts
get renderChanges(): boolean
set renderChanges(value: boolean)
```

Gets whether the input should flash on changes.

### value

```ts
get value(): T
set value(values: T)
```

Gets the value of the Element.

### values

```ts
get values(): T[]
set values(values: T[])
```

Gets multiple values on the Element.
