CModel.ScaleParameter A: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:




<onlyinclude>Returns the value of the scale parameter at the use stress level for ALTA models. Returns 0 if the model is not an ALTA model. '''Double'''</onlyinclude>
<onlyinclude>Applies to ALTA models only. Returns the value of the scale parameter at the use stress level. Returns 0 if the model is not an ALTA model. '''Double'''</onlyinclude>


== Syntax==
== Syntax==

Revision as of 22:38, 6 August 2015

APIWiki.png


Member of: SynthesisAPI9.cModel


Applies to ALTA models only. Returns the value of the scale parameter at the use stress level. Returns 0 if the model is not an ALTA model. Double

Syntax

.ScaleParameter_A()


Example

VBA

 ... 

 'Add code to get an existing ALTA model from the repository. 
 Dim AModel As New cModel
 ... 

 'Retrieve the scale parameter of the model. 
 Dim ScaleParameter As Double
 Set ScaleParameter = AModel.ScaleParameter_A
VB.NET

 ... 

 'Add code to get an existing ALTA model from the repository. 
 Dim AModel As New cModel
 ... 

 'Retrieve the scale parameter of the model. 
 Dim ScaleParameter As Double
 ScaleParameter = AModel.ScaleParameter_A