Function Entry: VLE-ENTGET-M

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

Function Entry: VLE-ENTGET-M

Name

vle-entget-m

Class

BricsCAD VLE Library Function

Syntax

(vle-entget-m dxfCodes ename)

Arguments and Values

  • dxfCodes list of DXF group codes to be retrieved
  • ename the
  • entity's ename

Description

retrieves the values for specified DXF group codes 'dxfCodes' for given entity 'ename', returns a list of (dxf . value) assoc items; DXF group codes are specified as a simple list of DXF codes;

Return Values

list of assoc items '((dxf1 . value1)(dxf2 . value2) …)

Examples

(vle-entget-m '(8 62 39)
entity)

or

(setq dxf6 6 dxf52 52 dxf39 39)

(vle-entget-m (list dxf8 dxf62 dxf39) entity)
- if variables are used

returns '((8 . "LayerX")(62 . 4)(39 .
0.0))

Notes

(vle-entget-m) does always return non-NIL values for omitted "default" values (ByLayer etc.);

if the entity does not support particular dxf code, that dxf code is not part of returned list

Availability

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

Source Notes