CModel.ScaleParameter A: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) mNo edit summary |
||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:cModel.ScaleParameter_A}} | {{DISPLAYTITLE:cModel.ScaleParameter_A}}{{Template:API}}{{Template:APIBreadcrumb|.[[CModel Class|cModel]]}} | ||
{{Template: | |||
<onlyinclude>For ALTA models, returns the scale parameter at the use stress level. '''Double'''. Returns 0 if the model is not an ALTA model.</onlyinclude> | |||
== Syntax== | == Syntax== | ||
.'''ScaleParameter_A()''' | |||
== Example == | |||
'''VBA''' | |||
{{APIComment|...}} | |||
{{APIComment|'Add code to get an existing ALTA model from the repository.}} | |||
{{APIPrefix|Dim}} AModel {{APIPrefix|As New}} cModel | |||
{{APIComment|...}} | |||
{{APIComment|'Retrieve the scale parameter of the model.}} | |||
{{APIPrefix|Dim}} ScaleParameter {{APIPrefix|As Double}} | |||
{{APIPrefix|Set}} ScaleParameter = AModel.ScaleParameter_A | |||
'''VB.NET''' | |||
{{APIComment| | {{APIComment|...}} | ||
{{APIComment|'Add code to get an existing ALTA model from the repository.}} | |||
{{APIComment|' | {{APIPrefix|Dim}} AModel {{APIPrefix|As New}} cModel | ||
Dim | {{APIComment|...}} | ||
{{APIComment|'Retrieve the scale parameter of the model.}} | |||
{{APIPrefix|Dim}} ScaleParameter {{APIPrefix|As Double}} | |||
ScaleParameter = AModel.ScaleParameter_A | |||
{{APIComment| | |||
{{APIComment|'Retrieve the scale parameter of the | |||
Dim ScaleParameter | |||
ScaleParameter = | |||
Latest revision as of 21:18, 13 November 2015
Member of: SynthesisAPI.cModel
For ALTA models, returns the scale parameter at the use stress level. Double. Returns 0 if the model is not an ALTA model.
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