Working with tables, how to force a comma to show up for numbers
Coming from AutoCAD I could create a table in a drawing and input numbers into it. If the number was anything greater than 999 then AutoCAD would automatically add the necessary comma at the thousands or millions place. I have searched high and low in all of the help forums and cannot figure out how to force this behavior in table in BricsCad
0
Comments
-
I had a deeper look and found this but there must be though a over riding top level setting. It will be part of the table dictionary, I just looked at a table. It is feasible to update all the cells via a lisp.
(vla-getcellformat Obj 2 0)
"%lu2%th44" is the thousands format for a cellCommand: (vla-getText Obj 2 2)
"456,789.123"0