When debugging some container sizes (namely, HBox) in Flex (v. 3.5), I noticed a variable “$height” in the Variables list.
Does anyone know what this variable is? It’s marked as protected, but I don’t believe I can access it in a child class.
I’ve noticed it sometimes gets a different value than “height” and “_height”. Does anyone know why this is and what it means for how a component is drawn?
The full mx framework source is available in your sdk directory here:
The private documentation says.
It’s marked with
mx_internalso you need to declareuse namespace mx_internal;to get access to it in your own class.