0fdefaa9ca017edfb76b736c825b34186f33045aTripp * <a href="http://www.w3.org/TR/NOTE-VML">VML</a> implementation of the <a href="Path.html">`Path`</a> class.
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * `VMLPath` is not intended to be used directly. Instead, use the <a href="Path.html">`Path`</a> class.
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * 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>
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * capabilities, the <a href="Path.html">`Path`</a> class will point to the `VMLPath` class.
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp * @module graphics
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @class VMLPath
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @extends VMLShape
9eaaa502227248d304ac9170902697d02158c1d9TrippVMLPath = function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp VMLPath.superclass.constructor.apply(this, arguments);
e7c7565d9550eaa87043aef0df77125ada996deaTripp * Indicates the width of the shape
60aa9bb9c10c290c922d51d05a4dfa7176cfd40eTripp * @config width
e7c7565d9550eaa87043aef0df77125ada996deaTripp * @type Number
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
e7c7565d9550eaa87043aef0df77125ada996deaTripp * Indicates the height of the shape
c093c1aed867e18aa4778708592e1ceb45d18cffTripp * @config height
e7c7565d9550eaa87043aef0df77125ada996deaTripp * @type Number
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * Indicates the path used for the node.
c093c1aed867e18aa4778708592e1ceb45d18cffTripp * @config path
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp * @type String
0fdefaa9ca017edfb76b736c825b34186f33045aTripp * @readOnly
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp getter: function()
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp return this._path;