BIM LISP - how to create categories under a new property set
I am new to LISP programming and using the LDSP
I want to create a user-created Property Set and a bunch of properties automatically every time I run this lisp.
(defun c:BANG ()
(vl-load-bim)
(bim:create-propertyset "TESTSET" "---TESTSET---" T NIL) T
)
How do i create the list of New Property in my 2nd screenshot?
I want to create a user-created Property Set and a bunch of properties automatically every time I run this lisp.
(defun c:BANG ()
(vl-load-bim)
(bim:create-propertyset "TESTSET" "---TESTSET---" T NIL) T
)
How do i create the list of New Property in my 2nd screenshot?
0
Comments
-
Hi fegis,
I suppose your question is related to this topic (https://forum.bricsys.com/discussion/comment/49567)?
The EXPORT/IMPORT functionality for property definitions might solve this.
Cheers,
Ruben0 -
Dear fegis,
likely it is
(bim:pset-set-property ename propertyset name value)
:-)
you can use an existing PropertySet for 'propertyset', while this function automatically creates a missing PropertySet on-the-fly, using default parameterisation.
You can use our "LISP Developer Support Package", a freeware download from our AppCatalog - contains all documentations (and more) around our Lisp system :
https://boa.bricsys.com/applications/a/?lisp-developer-support-package-(ldsp)-a720-al1176
hope this helps ?
many greetings !
0 -
Hi Ruben & Torsten
Many thanks for your responses.
I've upgraded to v22 and can export the fields now
0