Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
c# を使用して Autocad MEP 2011 でデバイスの StyleName を取得する方法
現在のレイアウトのスタイルシートを表示するには:
Layout layout = LayoutManager.Current.CurrentLayout; PlotSettings plotSettings = new PlotSettings(layout.ModelType); plotSettings.CopyFrom(layout); MessageBox.Show(plotSettings.CurrentStyleSheet);