How to Center Room Tags with Revit API + Python [Tutorial]

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025

Комментарии • 8

  • @revitdviser4769
    @revitdviser4769 Год назад +1

    Thanks for this.

  • @casualplaythroughs
    @casualplaythroughs Год назад +1

    Hi! It is possible to create a Revit addin with Python and deploy as a standalone installer/DLL, like C#?

    • @ErikFrits
      @ErikFrits  Год назад

      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.

  • @rezwanulhoque117
    @rezwanulhoque117 Год назад +1

    how to rename rooms?

    • @ErikFrits
      @ErikFrits  Год назад

      We can use room's property for modifying its name.
      room.Name = new_name
      Don't forget to use Transaction as well :)