If you were to define a ColorCerulean constant with an integer definition of 98765 for a Form class, you can refer to that constant in a number of ways in a JADE method.
In methods of the Form class or its subclasses, refer to the ColorCerulean constant as follows.
setForeColor(ColorCerulean);
In instances of type Form, refer to the ColorCerulean constant in methods as follows.
backColor := f.ColorCerulean;
In any method, refer to the ColorCerulean constant as follows.
color := Form.ColorCerulean;
Remember to enclose a string constant definition in single quotes ('') or double quote ("") characters; for example, "This is an example".