UPROPERTY(GlobalConfig) means?

DOCS: “Works just like config except that you cannot override it in a subclass. Cannot be given a value in default properties. Implies ReadOnly”

What means “cannot override it in a subclass”?

So i cant understand difference between Config and GlobalConfig specifiers.

I guess, this means that, this property cannot be overriden by configuration of derived class and must be specified only inside owner class configuration file.

(correct me if im wrong).

i found that description of that flag for UE4.4.1 has evolved and now its: “Same as above but load config from base class, not subclass.” which is better describe what i want (than version 4.3.0). Nice to see that such things like comments in code evolving too.