ParamInputInfo Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Global_Model|Global Model}}
{{Template:APIClass|Global_Model|Global Model}}
Class used for parameter input.
Class used for parameter input.



Revision as of 20:52, 6 February 2014


Class used for parameter input.

Constructors

Properties

  • Name Sets or returns the parameter name.
  • Min Sets or returns the minimum value.
  • Max Sets or returns the maximum value.
  • CanEqualMin Sets or returns whether the value can equal the Min.
  • CanEqualMax Sets or returns whether the value can equal the Max.
  • Value Sets or returns the parameter value.

Formatted Usage Example

Creates a new ParamInputInfo.

       Dim MyParamInput As New ParamInputInfo("Param1", 0, 10, False, True)

Change the parameter Value.

       MyParamInput.Value = 500