save_model#
- dlubal.api.rsection.Application.save_model(self, *, model_id=None, path=None, printout_reports=None)#
- Saves model specified by model id to optional specified path - Parameters:
- model_id (ModelId | None) – Unique identifier of the model Active model is used if this field is not set. 
- path (str | None) – Path to the model 
- printout_reports (bool | None) – When enabled, the printout reports are saved 
 
 
Method Type: Core
Usage
file_path = os.path.abspath('./model_name')
rstab_app.save_model(
    path=file_path,
)
string filePath = Path.GetFullPath("./model_name");
await RstabApp.save_model(
    path: filePath,
);