vle-dictionary-list


(vle-dictionary-list  dict  subDict  asNames)

scans the specified dictionary or sub-dictionary and lists all entries

Arguments

dict  entity name or string of dictionary to be scanned

subDict  if not NIL, the name of the sub-dictionary to be scanned; if NIL, the 'dict' is scanned

asNames  specifies whether item keys are listed or the entity names of items; 'T' specifies item keys

Return

list of dictionary entries, as list of key strings or entity names

Example

(vle-dictionary-list (namedobjdict) nil T) => ("ACAD_COLOR" "ACAD_GROUP" "ACAD_LAYOUT" ...)
(vle-dictionary-list (namedobjdict) "ACAD_TABLESTYLE" T) => ("Standard")
(vle-dictionary-list (namedobjdict) "ACAD_TABLESTYLE" nil) => (<Entity name: nnnnnnnn>)

Alias


Remarks

depending on 'subDict', the function scans either the given 'dict' or the 'subDict' dictionary for its entries;
supported dictionary name strings (case-insensitive) :


ACAD_COLOR


ACAD_DETAILVIEWSTYLE


ACAD_GROUP


ACAD_LAYOUT


ACAD_MATERIAL


ACAD_MLEADERSTYLE


ACAD_MLINESTYLE


ACAD_PLOTSETTINGS


ACAD_PLOTSTYLENAME


ACAD_SCALELIST


ACAD_SECTIONVIEWSTYLE


ACAD_TABLESTYLE


ACAD_VISUALSTYLE




©  Bricsys NV. All rights reserved.