ParamInputInfo Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(23 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Model Class|Global_Model}}
{{Template:API}}{{Template:APIBreadcrumb}}


{{APIComment|Class used for parameter input.}}


=== Constructors===
Represents the value of a parameter.
{{APIName|[[New ParamInputInfo]]}}{{APIComment|Create a new parameter input info class.}}


:{{APIPrefix|Public}}{{APIName|[[Name-GlobalStuff_Model|Name]]}}
== Properties ==
:{{APIPrefix|Public}}{{APIName|[[Min-GlobalStuff_Model|Min]]}}{{APIPrefix|As Double}}
{| {{APITable}}
:{{APIPrefix|Public}}{{APIName|[[Max-GlobalStuff_Model|Max]]}}{{APIPrefix|As Double}}
|-
:{{APIPrefix|Public}}{{APIName|[[CanEqualMin-GlobalStuff_Model|CanEqualMin]]}}{{APIPrefix|As Boolean}}
| style="width: 200px;"|CanEqualMax||Indicates whether the entered value can equal to the maximum value. '''Boolean'''.
:{{APIPrefix|Public}}{{APIName|[[CanEqualMax-GlobalStuff_Model|CanEqualMax]]}}{{APIPrefix|As Boolean}}
|-
:{{APIPrefix|Public}}{{APIName|[[Value-GlobalStuff_Model|Value]]}}{{APIPrefix|As Double}}
|CanEqualMin||Indicates whether the entered value can be equal to the minimum value. '''Boolean'''.
:{{APIPrefix|Public Sub New}}{{APIName|(}}{{APIPrefix|ByVal}}{{APIName|_[[Name-GlobalStuff_Model|Name]]}}{{APIName|,}}{{APIPrefix|ByVal}}{{APIName|_[[Min-GlobalStuff_Model|Min]]}}{{APIPrefix|As Double}}{{APIName|,}}{{APIPrefix|ByVal}}{{APIName|_[[Max-GlobalStuff_Model|Max]]}}{{APIPrefix|As Double}}{{APIName|,}}{{APIPrefix|ByVal}}{{APIName|_[[CanEqualMin-GlobalStuff_Model|CanEqualMin]]}}{{APIPrefix|As Boolean}}{{APIName|,}}{{APIPrefix|ByVal}}{{APIName|_[[CanEqualMax-GlobalStuff_Model|CanEqualMax]]}}{{APIPrefix|As Boolean}}{{APIName|)}}
|-
|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'''.
|}


=== Properties ===
 
 
 
 
 
==See Also==
*[[DistrParametersInput Class]]

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