-1

如何通过 c# 在 Autocad MEP 2011 中获取设备样式名称

4

1 回答 1

0

显示当前布局的样式表:

Layout layout = LayoutManager.Current.CurrentLayout; 
PlotSettings plotSettings = new PlotSettings(layout.ModelType);
plotSettings.CopyFrom(layout);
MessageBox.Show(plotSettings.CurrentStyleSheet);
于 2011-02-25T07:55:09.737 回答