ParamInputInfo Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
{{Template:API}}{{Template:APIBreadcrumb}}
Used with [[WeibullEvents.GetDistrParameters]] to enter customized model parameters.


== Constructors==
 
*ParamInputInfo {{APIComment|Creates a new ParamInputInfo object.}}
Represents the value of a parameter.


== Properties ==
== Properties ==
*Name (as ''string'') {{APIComment|Gets or sets the parameter name.}}
{| {{APITable}}
*Value (as ''double'') {{APIComment|Gets or sets the parameter value.}}
|-
*Min (as ''double'') {{APIComment|Gets or sets the minimum parameter value that will be accepted.}}
| style="width: 200px;"|CanEqualMax||Indicates whether the entered value can equal to the maximum value. '''Boolean'''.
*Max (as ''double'') {{APIComment|Gets or sets the maximum parameter value that will be accepted.}}
|-
*CanEqualMin (as ''boolean'') {{APIComment|Gets or sets whether the entered value can equal the Min.}}
|CanEqualMin||Indicates whether the entered value can be equal to the minimum value. '''Boolean'''.
*CanEqualMax (as ''boolean'') {{APIComment|Gets or sets whether the entered value can equal the Max.}}
|-
|Max||Gets or sets the maximum parameter value that will be accepted. '''Double'''.
|-
|Min||Gets or sets the minimum parameter value that will be accepted. '''Double'''.
|-
|Name||Gets or sets the parameter name. '''String'''.
|-
|Value||Gets or sets the parameter value. '''Double'''.
|}
 
 
 
 
 


== Usage Example ==
==See Also==
{{APIComment|'Creates a new ParamInputInfo.}}
*[[DistrParametersInput Class]]
  Dim MyParamInput As New ParamInputInfo("Param1", 0, 10, False, True)
 
{{APIComment|'Change the parameter Value.}}
  MyParamInput.Value = 500

Latest revision as of 23:41, 6 September 2016

APIWiki.png


Member of: SynthesisAPI


Represents the value of a parameter.

Properties

Name Description
CanEqualMax Indicates whether the entered value can equal to the maximum value. Boolean.
CanEqualMin Indicates whether the entered value can be equal to the minimum value. Boolean.
Max Gets or sets the maximum parameter value that will be accepted. Double.
Min Gets or sets the minimum parameter value that will be accepted. Double.
Name Gets or sets the parameter name. String.
Value Gets or sets the parameter value. Double.




See Also