vfoAllocateShapeData
vfoAllocateShapeData(d_shape) =>g_instance/ nil
Description
Returns a newly allocated and initialized instance of the subclass of the vfoShapeData class for the specified database shape ID.
Arguments
|
The database shape ID of one of the following: path, rectangle, polygon, or line. |
Value Returned
Example
Shape1=>objType = "rect" Obj = vfoAllocateShapeData (Shape1) => stdobj:0x1d003c className( classOf( Obj )) => vfoRectShapeData Shape2=>objType = "polygon" Obj = vfoAllocateShapeData (Shape2) => stdobj:0x1d003c className( classOf( Obj )) => vfoPolygonShapeData
Return to top