App Lab Documentation

getProperty()

Category:UI controls

You will generally want to define properties of UI elements using Design mode in App Lab. But sometimes you will want to change the value of a property in your app based on the user or in response to an event. getProperty() lets you see the current value of any property listed in Design mode for a given UI element.

Possible Properties

PropertyValueWorks on
"width"numberAll Design mode elements except screens
"height"numberAll design mode elements except screens
"x"numberAll design mode elements except screens
"y"numberAll design mode elements except screens
"text-color"color stringButton, text input, label, dropdown, and text area
"background-color"color stringButton, text input, label, dropdown, screen, and text area
"border-width"numberButton, text input, label, dropdown, image, photo select, and text area
"border-color"color stringButton, text input, label, dropdown, image, photo select, and text area
"border-radius"numberButton, text input, label, dropdown, image, photo select, and text area
"font-family"stringButton, text input, label, dropdown, and text area
"font-size"numberButton, text input, label, dropdown, and text area
"text-align"string ("left", "right", "center", or "justify")Button, label, text area
"hidden"booleanAll design mode elements except screens
"text"stringButton, label, text area
"placeholder"stringText input
"image"stringButton, image
"group-id"stringRadio button
"checked"booleanRadio button, checkbox
"readonly"booleanText area
"options"list of valuesDropdown
"value"numberSlider
"min"numberSlider
"max"numberSlider
"step"numberSlider
"fit"stringImage
"index"numberDropdown

Syntax

getProperty(id, property)

Parameters

NameTypeRequired?Description
idString

The ID of the UI element to which this function applies. Must begin with a letter, contain no spaces, and may contain letters, digits, - and _.

propertyString

The property to get.

Tips

  • If you select a UI element that was created in Design mode, the dropdown for property will filter to just the possible set of properties that can be set for the UI element.
  • setProperty() can be used to change the value of a given property.

Found a bug in the documentation? Let us know at support@code.org.