asiGetModelLibFile
asiGetModelLibFile(o_modelLibSelection) =>t_fileName/nil
Description
Gets the file name of a model library selection object.
Arguments
Value Returned
Examples
The following example shows how to get the model file names for the first model library in the current ADE L session:
session = asiGetCurrentSession()
=> stdobj@0x235ff080
modelList = asiGetModelLibSelectionList( session ) => (("./Models/myModels.scs" "FF") ("./Models/InlineModels.scs" "") ("./Models/mySingle.scs" "fastfast") ) asiGetModelLibFile(car(modelList)) => "./Models/myModels.scs"
Return to top