vle-entmod-m


(vle-entmod-m  dxfData  ename)

modifies the DXF values for DXF group codes as specified with 'dxfData' for given entity 'ename'

Arguments

dxfData  list of (dxf . value) assoc items to be set

ename    the entity's ename

Return

T   if the entity's values have been updated (or is identical)
NIL if updating the entity's DXF values failed

Example

(vle-entmod-m '((8 . "LayerX") (62 . 112) (39 . 2.0)) entity)
or
(setq layer "LayerX" color 112 elev 2.0)
(vle-entmod-m (list (cons 8  layer) (cons 62 color) (cons 39 elev)) entity) - if variables are used

sets the layer to "LayerX"
sets the colour index as 112
sets the elevation as 2.0

Alias


Remarks




©  Bricsys NV. All rights reserved.