What exactly is the difference between the @lzxtype number and numberExpression, based on http://svn.openlaszlo.org/openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
/** The horizontal offset of this view's upper left corner from the * upper left corner of its container. * @type Number * @lzxtype numberExpression * @lzxdefault "0" */ var x = 0; /** The angle for the drop shadow, in degrees * @access public * @type Number * @lzxtype number * @lzxdefault 0 */ var shadowangle = 0; Why is the @lzxtype for "x" numberExpression, and for "shadowangle" just "number". Is there a functional difference between both attributes?
