# CLIENTDESIGN

## Overview

The **CLIENTDESIGN** outlines two constants: **HANDLES**, which determines available resizing handles, and **SELECTABLE**, which configures whether an element can be selected in the client design. These properties are set using the `putClientProperty` method.

## Constants Summarized

| Type                                                     | Name                      | Summary                                                 |
| -------------------------------------------------------- | ------------------------- | ------------------------------------------------------- |
| [String](/reference/servoycore/dev-api/js-lib/string.md) | [HANDLES](#handles)       | Property that can be set using elements\['element\_1']. |
| [String](/reference/servoycore/dev-api/js-lib/string.md) | [SELECTABLE](#selectable) | Property that can be set using elements\['element\_1']. |

## Constants Detailed

### HANDLES

Property that can be set using elements\['element\_1'].putClientProperty(...), it sets the available handles in clientdesign

**Type**\
[String](/reference/servoycore/dev-api/js-lib/string.md)

**Sample**

```js
//by default all are present. ('l' stands for left, 't' stands for top, etc.)
elements['element_1'].putClientProperty(CLIENTDESIGN.HANDLES, new Array('r', 'l')); // other options are 't', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'
```

### SELECTABLE

Property that can be set using elements\['element\_1'].putClientProperty(...), it sets the selectable flag in clientdesign

**Type**\
[String](/reference/servoycore/dev-api/js-lib/string.md)

**Sample**

```js
//by default an element with an name is selectable in client design
elements['element_1'].putClientProperty(CLIENTDESIGN.SELECTABLE, false);
```

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.servoy.com/reference/servoycore/dev-api/application/clientdesign.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
