ReadOnlyIntPropertyWrapper
class ReadOnlyIntPropertyWrapper(wraps: IntProperty) : ReadOnlyPropertyWrapper<Int, Property<Int>> , ReadOnlyIntProperty
Never use this class directly. Use IntProperty.asReadOnly to obtain a read-only version of a mutable IntProperty.
Boilerplate which avoids having to use generic. Instead of ReadOnlyPropertyWrapper<Int, Property<Int>>
, use ReadOnlyIntPropertyWrapper
.