/* Size.java
Purpose:
Description:
History:
Mon Dec 14 22:34:44 TST 2009, Created by tomyeh
Copyright (C) 2009 Potix Corporation. All Rights Reserved.
*/
package _global_;
/**
* A size is a two-element array, where the first element is the width, and the second the height.
*
* <p>For example, <code>zk(el).textSize()</code> returns a size.
*
<pre><code>
var sz = zk(el).textSize();
zk.log("w,h = " + sz[0] + "," + sz[1]);
</code></pre>
* @author tomyeh
*/
public class Size extends Array {
private Size() {}
}