create_model#
See also
ModelId — More details about the ModelId object.
Example
from dlubal.api import rstab, common
with rstab.Application() as rstab_app:
rstab_app.create_model(name="new_model")
using rstab = Dlubal.Api.Rstab;
using Google.Protobuf;
public class cantilever
{
public static async Task CantileverModel(Application rstab_app)
{
await rstab_app.create_model(name="new_model")
}
}