LayoutManager
LayoutManager layoutMgr = LayoutManager.Current;
layoutMgr.LayoutCount // 布局数量
layoutMgr.CurrentLayout // 当前布局的名称
// 获取当前布局
Layout layout = tr.GetObject(
layoutMgr.GetLayoutId(layoutMgr.CurrentLayout),
OpenMode.ForRead) as Layout;
// 布局的名称
layout.LayoutName
// 布局是模型空间还是图纸空间
layout.ModelType
// Layout继承自PlotSettings
public class Layout : PlotSettings
网友评论