ParamInputInfo Class: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
== Properties == | == Properties == | ||
*Name (as ''string'') {{APIComment| | *Name (as ''string'') {{APIComment|Gets or sets the parameter name.}} | ||
*Value (as ''double'') {{APIComment| | *Value (as ''double'') {{APIComment|Gets or sets the parameter value.}} | ||
*Min (as ''double'') {{APIComment| | *Min (as ''double'') {{APIComment|Gets or sets the minimum parameter value that will be accepted.}} | ||
*Max (as ''double'') {{APIComment| | *Max (as ''double'') {{APIComment|Gets or sets the maximum parameter value that will be accepted.}} | ||
*CanEqualMin (as ''boolean'') {{APIComment| | *CanEqualMin (as ''boolean'') {{APIComment|Gets or sets whether the entered value can equal the Min.}} | ||
*CanEqualMax (as ''boolean'') {{APIComment| | *CanEqualMax (as ''boolean'') {{APIComment|Gets or sets whether the entered value can equal the Max.}} | ||
== Usage Example == | == Usage Example == |
Revision as of 21:41, 12 March 2014
Used with WeibullEvents.GetDistrParameters to enter customized model parameters.
Constructors
- ParamInputInfo Creates a new ParamInputInfo object.
Properties
- Name (as string) Gets or sets the parameter name.
- Value (as double) Gets or sets the parameter value.
- Min (as double) Gets or sets the minimum parameter value that will be accepted.
- Max (as double) Gets or sets the maximum parameter value that will be accepted.
- CanEqualMin (as boolean) Gets or sets whether the entered value can equal the Min.
- CanEqualMax (as boolean) Gets or sets whether the entered value can equal the Max.
Usage Example
Creates a new ParamInputInfo.
Dim MyParamInput As New ParamInputInfo("Param1", 0, 10, False, True)
Change the parameter Value.
MyParamInput.Value = 500