txGetFigSetData
txGetFigSetData(T_figSet n_entry) =>g_object/ nil
Description
Returns the nth object from the specified FigSet. This object is either a dbObject (CDB figure) or txObject (a FigSet or a transient shape).
Arguments
Value Returned
Examples
Returns the first and the second object from the FigSet fs, respectively.
id = txGetFigSetData(fs 0)
> tx@0x1fc106d0
id~>objType
> "FigSet"
id = txGetFigSetData(fs 1)
> db:0x27a9dc1a
id~>objType
> "polygon"
Related Topics
Return to top