ID | Unique symbolic name (ID) of the widget.
This ID can be used by the application to access the widget via "builder componentAt:#ID". |
Font | Defines the font style of the widget.
After selecting the check toggle, the font style can be chosen by selecting one of the Family/Face/Style/Size entries. If no font style is selected, the widget takes its default font from the style sheet. It is recommened to NOT specify any font, as it makes reconfiguration by the end-user (via the style settings) impossible. |
FG-Color | Defines the foreground color of the widget,
i.e. the color of the letters.
After selecting the check toggle, the foreground color can be chosen by selecting the desired color. If no color is selected, the widget takes its default foreground color from the style sheet. It is recommened to NOT specify any color, as it makes reconfiguration by the end-user (via the style settings) impossible. |
BG-Color | Defines the background color of the widget.
After selecting the check toggle, the background color can be chosen by selecting the desired color. If no color is selected, the widget takes its default background color from the style sheet. It is recommened to NOT specify any color, as it makes reconfiguration by the end-user (via the style settings) impossible. |
Initially Disabled | Turns on/off that the widget is initially disabled.
An enableChannel may overwrite this (see below). Use this, if the widget is to be later enabled programatically. |
Initially Invisible | Turns on/off that the widget is initially invisible.
A visibilityChannel may overwrite this (see below). Use this, if the widget is to be later made visible programatically. |
Can Tab | Turns on/off that the widget can be reached by tabbing. |
Visible | Aspect selector or binding for making the widget visible/invisible.
It should return one of: - Boolean instance** (only for static behavior)
A value model is used to make this feature dynamically changable. |
Enable | Aspect selector or binding for en-/disabling the widget.
It should return one of: - Boolean instance** (only for static behavior)
A value model is used to provide a dynamically changing of the ability of the button. |
FG-Color | Aspect selector or binding for the foreground color of the widget.
It should return one of: - Color instance (only for static behavior)
A value model is used to dynamically change the widgets foreground color. |
BG-Color | Aspect selector or binding for the background color of the widget.
It should return one of: - Color instance (only for static behavior)
A value model is used to dynamically change the widgets background color. |
Copyright © 1998 eXept Software AG, all rights reserved