-
Hello. The default plot configuration is done with .STB files. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @thaiguer, Here is what I found: https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-3A68A211-1E6C-4A71-8503-62722A1155A6 The interesting part is:
In ACadSharp the variable PSTYLEMODE is in the header, I'll open a PR to add an Hope this helps. |
Beta Was this translation helpful? Give feedback.
Hi @thaiguer,
Here is what I found:
https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-3A68A211-1E6C-4A71-8503-62722A1155A6
The interesting part is:
In ACadSharp the variable PSTYLEMODE is in the header,
CadDocument.Header.PlotStyleMode
, by default is set to 0, you only need to change it to 1.I'll open a PR to add an
enum
to make it easier.Hope this helps.