Members
(constant) List of built-in properties
Built-in properties represent the components' reserved internal keywords, which are integral to their built-in functionality. To avoid conflicts, users should not override them and must avoid these names in custom properties.
| Name | Type | Description |
|---|---|---|
onCreated | string | | A callback function that is executed when the |
onMounted | string | | A callback function that is executed when the |
onClick | string | | A callback function that is executed when the component is clicked. This applies only to components created from |
onChange | string | | A callback function that is executed when the component value is changed. This applies only to components created from |
onPointerRelease | string | | A callback function that is executed when the pointer is released on the component. This applies only to components created from |
onPointerDown | string | | A callback function that is executed when the pointer is pressed on the component. This applies only to components created from |
position | string | The web CSS |
width | number | The |
height | number | The |
top | number | The |
left | number | The |
borderRadius | number | The |
rotation | number | The |
zIndex | number | The |
tips | string | The tool tips that are displayed when the button is disabled and hovered. This applies only to components created from |
icon | string | The icon that is displayed on the components. If no icon is defined, "null" will be displayed. The icon comes from the form provided by AppStudio (see link: xxxx). This applies only to components created from |
text | string | The text that is displayed on the component. This applies only to components created from |
color | string | Text and icon color of the component. |
font | Object | Font configuration for the component text. |
backgroundColor | string | Background color of the component. |
border | string | Border style for the component (e.g., '1px solid transparent'). |
functionality | Object | Functionality configuration for the component. |
styleTemplate | string | Style template for the component. |
inputVar | Object | Configuration object for an input variable. It defines the type, function, and value of the input variable, which can be customized for different use cases. inputVar.type: This applies to input variables in |
useTitle | boolean | Indicates whether to display a title for the component. |
readOnly | boolean | Indicates whether the component is read-only. |
title | string | Component title. Default value is an empty string. |
alwaysVisible | boolean | Indicates whether the component is always visible. Default value is "true". |
activeViewIndex | number | Current active view index. Default value is "0". |
useViewIcon | boolean | Indicates whether to use an icon for the views. Default value is "true". |
views | Array | List of the views associated with the container component. Default value is an empty array. |
content | object | Layout configuration for the |
imgSrc | string | The source URL of the image. This applies only to components created from |
imgStyle | object | The CSS style applied to the image. It is set to |
useBorder | boolean | Whether to display a border around the input field. It is set to |
regex | object | A regular expression object used for validating the input value. This applies only to components created from |
keyboardHelperDesc | string | Guidance information for the input field, which will help users understand the kind of the input expected. This applies only to components created from |
step | string | The increment step value of the input field. Default value is |
numRange | object | The range object defining the minimum and maximum values of the input. This applies only to components created from |
value | string | The actual value of the selected item in the dropdown list. This value corresponds to the |
selectedIndex | number | The index of the current selected dropdown item. Indexing starts from 0 for the first item. |
optionItems | string | A string representation of the dropdown items. Each item is formatted as |