Hello,
I am working with RFEM 6 Python API II and I create my model like this:
with rfem.Application(api_key_value=API_KEY, url="127.0.0.1", port=9000) as rfem_app:
rfem_app.create_model(name="wallmaker")
During the editing process, the active model is in the foreground. However, after I finish creating objects with:
rfem_app.create_object_list(lst)
the model window moves behind the other open models.
Is there any way in the API to bring the active model to the front again after create_object_list(lst) finishes?
I found methods related to the active model, but I am not sure whether there is also a way to control the model window visibility/focus in the RFEM interface.
Thank you.