ParamInputInfo Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Model|Global Model}}
{{Template:API}}{{Template:APIBreadcrumb}}
Class used for parameter input.


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


== Properties ==
== Properties ==
*Name (as ''string'') {{APIComment|Sets or gets the parameter name.}}
{| {{APITable}}
*Min (as ''double'') {{APIComment|Sets or gets the minimum value.}}
|-
*Max (as ''double'') {{APIComment|Sets or gets the maximum value.}}
| style="width: 200px;"|CanEqualMax||Indicates whether the entered value can equal to the maximum value. '''Boolean'''.
*CanEqualMin (as ''boolean'') {{APIComment|Sets or gets whether the value can equal the Min.}}
|-
*CanEqualMax (as ''boolean'') {{APIComment|Sets or gets whether the value can equal the Max.}}
|CanEqualMin||Indicates whether the entered value can be equal to the minimum value. '''Boolean'''.
*Value (as ''double'') {{APIComment|Sets or gets the parameter value.}}
|-
|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 ==
{{APIComment|Creates a new ParamInputInfo.}}
        Dim MyParamInput As New ParamInputInfo("Param1", 0, 10, False, True)


{{APIComment|Change the parameter Value.}}
==See Also==
        MyParamInput.Value = 500
*[[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