3.7 Applicability

In the documentation of every object attribute you will find information about the applicability of this attribute. Attribute applicability is described in the form of a combination of the four letters I, S, G, and N. This tells you the various contexts that the attribute can be used in.

Here is an explanation of the different applicability contexts:

I
Attribute can be used when creating the object in the XML file. (initialization time)

S
Attribute can be used with mui.Set() at runtime.

G
Attribute can be used with mui.Get() at runtime.

N
Notifications on this attribute are possible either by using the "Notify" tag in the XML declaration or by calling the mui.Notify() function at runtime.

For example, if an attribute has an applicability of just "I", then this attribute can only be used during object initialization time. It cannot be changed later using mui.Set(). If an attribute has an applicability of just "S" on the other hand, it is not possible to specify the attribute already at initialization time in the XML file. Attributes that have an applicability of "ISGN" can be used in all contexts.


Show TOC