Launch PDF and DWG settings dialog from a script/form

Is there a way to launch these 2 windows from another button or script?
I was looking in external commands but didn’t find anything relevant


Chao anh,
Have you check the Journal file, it usually shows the command that is used to launch these?

  • ID_EXPORT_PDF
  • ID_IFC_OPTIONS

The pyrevit modules offers utilities:

from pyrevit import HOST_APP

HOST_APP.post_command("ID_EXPORT_PDF")
# HOST_APP.post_command("ID_IFC_OPTIONS")
3 Likes