VMLRect.js revision 0fdefaa9ca017edfb76b736c825b34186f33045a
/**
* <a href="http://www.w3.org/TR/NOTE-VML">VML</a> implementation of the <a href="Rect.html">`Rect`</a> class.
* `VMLRect` is not intended to be used directly. Instead, use the <a href="Rect.html">`Rect`</a> class.
* If the browser lacks <a href="http://www.w3.org/TR/SVG/">SVG</a> and <a href="http://www.w3.org/TR/html5/the-canvas-element.html">Canvas</a>
* capabilities, the <a href="Rect.html">`Rect`</a> class will point to the `VMLRect` class.
*
* @class VMLRect
* @constructor
*/
VMLRect = function()
{
VMLRect.superclass.constructor.apply(this, arguments);
};
VMLRect.NAME = "vmlRect";
Y.extend(VMLRect, Y.VMLShape, {
/**
* Indicates the type of shape
*
* @property _type
* @readOnly
* @type String
*/
_type: "rect"
});
VMLRect.ATTRS = Y.VMLShape.ATTRS;
Y.VMLRect = VMLRect;