Besides exporting to Studio, the AutoCAD plugin does two things inside the drawing: it gives layers presentation display colors that travel with the DWG, and it plots the current layout to PDF in one click. Both live on the AutoStyle Pro panel of the BDL ribbon tab.
Pick Style (PICK_STYLE) sets a presentation color and
transparency for a layer, chosen by clicking an object on that layer:
The style is applied to the drawing display and saved to a sidecar file beside the DWG, so it
comes back the next time the drawing is opened. Objects drawn on layer 0 inside
a block take the style of the block's own layer, which is what you normally want when
picking a symbol.
The drawing must be saved first. The sidecar lives next to the DWG file, so a never-saved drawing has nowhere to put it. Save once and re-run.
Sync Styles (SYNC_STYLES) re-applies the styles saved in this
drawing's sidecar. Use it after opening a drawing on another machine, after a display
change, or when someone else has updated the sidecar. If no sidecar exists for the drawing,
the command says so and does nothing.
A style map is just the layer-name-to-appearance table, and it can be moved between drawings from the command line:
| Command | What it does |
|---|---|
EXPORT_STYLE_MAP |
Writes the current styles to a JSON file you choose, such as an office standard or the starting point for the next sheet in a set. |
IMPORT_STYLE_MAP |
Loads a style map from a JSON file, applies it, and saves it into this drawing's sidecar. |
CLEAR_STYLES |
Clears all presentation styles from the drawing display. |
ABOUT_AUTOSTYLE |
Prints the plugin version to the command line, which is useful when reporting an issue. |
Because a style map is keyed to layer names, the same map applies cleanly across a sheet set that shares a layer standard.
These two are related but separate. Layer styles here change how the drawing displays in AutoCAD, and the colors they set are what the export picks up as each layer's color. Everything else (fills, textures, materials, looks, shadows, symbols) happens in Studio. If you only want a quick color pass inside CAD, Pick Style is enough. If you want a rendered plan, export to Studio.
Plot PDF (ONE_CLICK_PLOT_PDF) plots the current layout to PDF
using the layout's own page setup: its paper size, rotation, plot type and scale.
There is no need to walk through the Plot dialog. You are prompted for a filename, defaulting
to the drawing name with _Presentation.pdf appended, in the drawing's folder.
This is the quick way to get a check print of the CAD sheet. For a rendered presentation PDF, export to Studio and use Studio's own export, which prints the styled drawing at the sheet's real paper size.