VMLPath.js revision c093c1aed867e18aa4778708592e1ceb45d18cff
/**
* The VMLPath class creates a graphic object with editable
* properties.
*
* @class VMLPath
* @extends VMLShape
*/
VMLPath = function()
{
};
/**
* @private
*/
_updateHandler: function()
{
var host = this;
}
});
/**
* Indicates the width of the shape
*
* @config width
* @type Number
*/
width: {
getter: function()
{
return this._width;
},
{
return val;
}
},
/**
* Indicates the height of the shape
*
* @config height
* @type Number
*/
height: {
getter: function()
{
return this._height;
},
{
return val;
}
},
/**
* Indicates the path used for the node.
*
* @config path
* @type String
*/
path: {
readOnly: true,
getter: function()
{
return this._path;
}
}
});