axlGetModelFile
axlGetModelFile(x_modelHandle) =>t_modelFile/ nil
Description
Returns the model file path for the specified model.
Arguments
Value Returned
|
The model file name is returned along with the full path. If the model file is imported from test, only the file name is returned. |
||
Examples
Returns the file details for the specified model file.
x_mainSDB=axlGetMainSetupDB(axlGetWindowSession())
=> 1001
cornerHandle=axlGetCorner(x_mainSDB "C0")
=> 1300
modelHandle=axlGetModel(cornerHandle "model1.scs")
=> 1311
axlGetModelFile(modelHandle)
=> "/hm/user/models/model1.scs"
Related Topics
Return to top