I noticed that Xojo now allows constants to be defined for a user-defined class, similar to constants defined in a module, but I don’t find any documentation on how these can be used.
Evidently they can be used within methods of the same class, the IDE autocompletes and it compiles fine.
But… are these constants private to the class (ie accessible only in methods within the class) or can they be accessed globally ? e.g. something like:
someValue = myClass.kMyConstant