Message 1 of 4
Is there a way to change system type of a duct using the api?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to change the system type of a ducts having "Undefined" system type using the revit api (C#).
I tried :
var ele = e.get_Parameter(BuiltInParameter.RBS_DUCT_SYSTEM_TYPE_PARAM);
ele.Set(_pipeSystemTypeId);
// _pipeSystemTypeId is the ElementId of the desired system type
the problem is BuiltInParameter.RBS_DUCT_SYSTEM_TYPE_PARAM is readonly
Is there any other posible way to achieve this?
Thanks.