> For the complete documentation index, see [llms.txt](https://interactiveboard.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://interactiveboard.gitbook.io/docs/objects/general-information/properties-and-placeholders.md).

# Properties & Placeholders

{% hint style="info" %}
All object properties have default values, so you should only declare properties if you want to change the values from the defaults.
{% endhint %}

**PlaceholderAPI** can be used in all object properties. Board objects will update automatically after a placeholder changes.

Object properties can have a different value when hovered, see [Click and Hover](/docs/objects/general-information/click-and-hover.md)

***

Properties can be declared in a more complex way, when additional control is needed.

```yaml
example-text:
  type: text
  
  position: 0 0
  outline-color: black
  
  ## 1) this is the regular way of declaring a property, in this case text
  text: '&4Example text'
  
  ## 2) this is the complex way of declaring properties,
  ## this gives you more control of how the placeholders are parsed
  text:
    ## Enabling this removes color codes
    remove-color-codes: false
    ## Enabling this replaces \n with new line symbol
    replace-new-line: true
    ## the value of the property, same as 1) example
    value: '&4 Example text'
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://interactiveboard.gitbook.io/docs/objects/general-information/properties-and-placeholders.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.
