Accessing Model Parameters
Accessing model parameters is straightforward.
The scenario.parameters global is used as an accessor function, passing in the name of the parameter to fetch. This returns an object with value and label properties.
To return the Maximum investment per share from the example project, interrogate the scenario parameters to find the value associated with the parameter 'MAXVAL'.
Code editor
<vdl-section> <vdl-row> <vdl-column> <span vdl-text="='Maximum exposure to a single share type: ' + scenario.parameters('MAXVAL').value"></span> </vdl-column> </vdl-row> </vdl-section>
View Designer

Model Parameters in the View Designer