VMLPath.js revision 5ecb8c8b041752f6b716054ff5cfc2c9992365c6
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * The VMLPath class creates a graphic object with editable
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * properties.
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @class VMLPath
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @extends VMLShape
9eaaa502227248d304ac9170902697d02158c1d9TrippVMLPath = function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp VMLPath.superclass.constructor.apply(this, arguments);
4f117ca9be1d1a5a285b20cac401d1c2ee340c5bTripp var host = this;
e7c7565d9550eaa87043aef0df77125ada996deaTripp * Indicates the width of the shape
e7c7565d9550eaa87043aef0df77125ada996deaTripp * @attribute width
e7c7565d9550eaa87043aef0df77125ada996deaTripp * @type Number
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp return this._width;
e7c7565d9550eaa87043aef0df77125ada996deaTripp * Indicates the height of the shape
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @attribute height
e7c7565d9550eaa87043aef0df77125ada996deaTripp * @type Number
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp return this._height;
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * Indicates the path used for the node.
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @attribute path
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @type String
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp return this._path;