码迷,mamicode.com
首页 > 其他好文 > 详细

Revit 二次开发 修改对象的颜色

时间:2014-05-24 01:59:36      阅读:1066      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   code   

bubuko.com,布布扣
//修改对象颜色

[TransactionAttribute(Autodesk.Revit.Attributes.TransactionMode.Manual)]
public class ChangeColor : IExternalCommand
{

    public Result Execute(ExternalCommandData commandData, ref string messages, ElementSet elements)
    {
          ChangeElementColor(commandData, elements);
           return Result.Succeeded;
    }


    public void ChangeElementColor(ExternalCommandData   commandData, ElementSet elements)
    {
        UIApplication app = commandData.Application;
        Document doc = app.ActiveUIDocument.Document;

        ElementId el = new ElementId(729401);

        Transaction trans = new Transaction(doc);
        trans.Start("ChangeColor");
    
        Color color = new Color((byte)255, (byte)0, (byte)0);
        OverrideGraphicSettings ogs = new OverrideGraphicSettings();
        //设置ElementId为729401的Element的颜色
        ogs.SetProjectionLineColor(color);//投影表面线的颜色
        ogs.SetCutFillColor(color);//切割面填充颜色
        Autodesk.Revit.DB.View view = doc.ActiveView;
        view.SetElementOverrides(el, ogs);

        trans.Commit();
     } 
}                
bubuko.com,布布扣

 

Revit 二次开发 修改对象的颜色,布布扣,bubuko.com

Revit 二次开发 修改对象的颜色

标签:des   style   class   blog   c   code   

原文地址:http://www.cnblogs.com/siyuan926/p/3736847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!