asiGetModelLibSelectionList
asiGetModelLibSelectionList(o_session) =>l_modelLibSelectionList/nil
Description
Formats the statement which specifies the model library information.
Arguments
Value Returned
Examples
The following example shows how to get the list of model file names in the current ADE L session:
session = asiGetCurrentSession()
=> stdobj@0x235ff080
modelList = asiGetModelLibSelectionList( session ) => (("./Models/myModels.scs" "FF") ("./Models/InlineModels.scs" "") ("./Models/mySingle.scs" "fastfast") ) ;The following statement returns the model file name for the first model library in the current ADE L session asiGetModelLibFile(car(modelList)) => "./Models/myModels.scs"
Return to top