Function Entry: VLE-ENTMOD-M

← Prev | ↑ Chapter | Next → | Index | Symbols

Function Entry: VLE-ENTMOD-M

Name

vle-entmod-m

Class

BricsCAD VLE Library Function

Syntax

(vle-entmod-m dxfData ename)

Arguments and Values

  • dxfData list of (dxf . value) assoc items to be
  • set
  • ename
  • the entity's ename

Description

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

Return Values

T if the entity's values have been updated (or is identical)

NIL if updating the entity's DXF values failed

Examples

(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

Availability

  • AutoCAD 2026: not documented.
  • BricsCAD V26: documented.
  • Status: BricsCAD-only.

Source Notes