axlGetModelSection
axlGetModelSection(x_modelHandle) =>t_sectionName/ nil
Description
Returns the model section being used for the corner with which the model file is associated.
Arguments
Value Returned
Examples
Returns the model section for gpdk.scs model file.
x_mainSDB=axlGetMainSetupDB(axlGetWindowSession())
=> 1001
=> "C0"
cornerHandle=axlGetCorner(x_mainSDB "C0")
=> 1918
model = axlGetModel(cornerHandle "model1.scs")
=> 1311
axlGetModelSection(model)
=> "FF"
; the return value implies that corner C0 uses section FF of the model file, model1.scs
Related Topics
Return to top