ParamInputInfo Class

From ReliaWiki
Revision as of 16:42, 11 March 2014 by Chris Kahn (talk | contribs)
Jump to navigation Jump to search


Class used for parameter input.

Constructors

  • ParamInputInfo Creates a ParamInputInfo object.

Properties

  • Name (as string) Sets or gets the parameter name.
  • Min (as double) Sets or gets the minimum value.
  • Max (as double) Sets or gets the maximum value.
  • CanEqualMin (as boolean) Sets or gets whether the value can equal the Min.
  • CanEqualMax (as boolean) Sets or gets whether the value can equal the Max.
  • Value (as double) Sets or gets the parameter value.

Usage Example

Creates a new ParamInputInfo.

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

Change the parameter Value.

       MyParamInput.Value = 500