Autodesk.Revit.DB.BackgroundStyle是Revit API中的一个类别,用于描述Revit中的背景风格。
BackgroundStyle类型包含以下几个枚举值:
BackgroundStyle类型包含以下属性:
BackgroundStyle类型目前没有任何方法。
以下代码片段演示如何将Revit中的视图背景设置为红色纯色:
Document doc = ...;
View view = ...;
BackgroundStyle bgStyle = new BackgroundStyle();
bgStyle.Type = BackgroundStyleType.Solid;
bgStyle.ColorTop = new Autodesk.Revit.DB.Color(255, 0, 0);
bgStyle.ColorBottom = new Autodesk.Revit.DB.Color(255, 0, 0);
view.BackgroundStyle = bgStyle;
doc.Regenerate();