VMLRect.js revision 9eaaa502227248d304ac9170902697d02158c1d9
/**
* Draws rectangles
*/
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;