Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
Thanks for this.
My pleasure!
Hi! It is possible to create a Revit addin with Python and deploy as a standalone installer/DLL, like C#?
To be honest I haven't explored this option, but I haven't heard of simple ways to do that. You would need to ship pyRevit's engine as well, since python is not natively supported by Autodesk.
how to rename rooms?
We can use room's property for modifying its name.room.Name = new_nameDon't forget to use Transaction as well :)
Thanks for this.
My pleasure!
Hi! It is possible to create a Revit addin with Python and deploy as a standalone installer/DLL, like C#?
To be honest I haven't explored this option, but I haven't heard of simple ways to do that. You would need to ship pyRevit's engine as well, since python is not natively supported by Autodesk.
how to rename rooms?
We can use room's property for modifying its name.
room.Name = new_name
Don't forget to use Transaction as well :)