Looking at Qt Quick Controls code I see internal property declaration with a comment /*! \internal */. For example, in CombBox code:
/*! \internal */
property var __popup: popup
Seems, Qt documentation does not provide any options to declare internal properties in QML and the declaration looks like ordinary property declaration. So, the questions are:
What makes these properties internal?
Is it possible to get/set such properties from custom code without any troubles?
Does the engine distinguish internal and not internal properties?
If it does, how?
Thanks.
↧