We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(part of UI)
Returns: size object
Parameters: aSize (size)
Creates a copy of the aSize parameter and returns it.
aSize
Note: You must always copy sizes before modifying them; else you risk modifying the original size.
var aSize = UI.makeSize ( 100, 150 ); var bSize = UI.copySize ( aSize ); bSize.w = 125; // aSize is now { w: 100, h: 150 } // bSize is now { w: 125, h: 150 }
0.3 Introduced; Docs Valid