SAP2000 - API Ejemplo
SAP2000 - API Ejemplo
com/2013/08/27/etabs-oapi-how-to-get-started/
Sub template_New_model()
filename = "C:\test.edb"
Dim myEtabs As ETABS2013.cOAPI ' the OAPI class has methods related to high level
program stuff, like .applicationStart()
Dim myModel As ETABS2013.cSapModel ' the SapModel class is where most things we are
interested in reside
myEtabs.ApplicationStart
myModel = myEtabs.SapModel
' DO STUFF
End Sub