WeibullDataSet.GetDistrParameters: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:


== Syntax ==
== Syntax ==
  '''_GetDistrParameters'''({{APIPrefix|ByVal}} ''sMsg'' {{APIPrefix|As String}}, {{APIPrefix|ByVal}} ''GetOnlyOneParameter'' {{APIPrefix|As Boolean}}, _
  '''_GetDistrParameters'''({{APIPrefix|ByVal}} ''sMsg'', {{APIPrefix|ByVal}} ''GetOnlyOneParameter'', {{APIPrefix|ByVal}} ''ParamCount'', {{APIPrefix|ByRef}} ''Params()'', {{APIPrefix|ByRef}} ''Cancel'')
                    {{APIPrefix|ByVal}} ''ParamCount'' {{APIPrefix|As Long}}, ''Params()'' {{APIPrefix|As ParamInputInfo}}, ''Cancel'' {{APIPrefix|As Boolean}})


===Parameters===
===Parameters===
''sMsg''
''sMsg''
: The message to display.
: Required. String. The message to display.
''GetOnlyOneParameter''
''GetOnlyOneParameter''
: The prompt for only one parameter.
: Required. Boolean. Indicates whether to get a value for only one parameter. Default value = False.
''ParamCount''
''ParamCount''
: The number of parameters to update.
: Required. Integer. The number of parameters to update.
''Params()''
''Params()''
: The array of [[ParamInputInfo Class|ParamInputInfo]] objects to update.  
: Required. An array of [[ParamInputInfo Class|ParamInputInfo]] type objects that represent the model's parameters.  
''Cancel''
''Cancel''
: Indicates whether the input was cancelled.
: Required. Boolean. Indicates whether the input was cancelled. Default value = False.

Revision as of 16:19, 16 August 2016

APIWiki.png


Member of: SynthesisAPI.WeibullDataSet Template:InProgress


Occurs when there is insufficient data to fit a model. Displays a prompt for entering the parameters of the distribution.


Remarks: To hide the messages or write your own code for the event procedure, set the UseEvents property of the object to True. The event is raised by the class methods.

Syntax

_GetDistrParameters(ByVal sMsg, ByVal GetOnlyOneParameter, ByVal ParamCount, ByRef Params(), ByRef Cancel)

Parameters

sMsg

Required. String. The message to display.

GetOnlyOneParameter

Required. Boolean. Indicates whether to get a value for only one parameter. Default value = False.

ParamCount

Required. Integer. The number of parameters to update.

Params()

Required. An array of ParamInputInfo type objects that represent the model's parameters.

Cancel

Required. Boolean. Indicates whether the input was cancelled. Default value = False.