close_connection#
Example
from dlubal.api import rstab
with rstab.Application() as rstab_app:
rstab_app.close_connection()
using rstab = Dlubal.Api.Rstab;
using Google.Protobuf;
public class cantilever
{
public static async Task CantileverModel(Application rstab_app)
{
await rstab_app.close_connection();
}
}
Tip
Connection is terminated automatically at the end of the script. If the connection needs to be terminated separately, then use this function.