WeibullDataSet.HideCalculationProgress: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
m (Protected "WeibullEvents.HideCalculationProgress" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}
Called by a [[WeibullDataSet Class|WeibullDataSet]] object when calculation progress should be hidden. Hides the calculation progress display.


Hides the calculation progress display.
== Syntax ==
 
<ul><li>
== Method Syntax ==
HideCalculationProgress(
{{APIName|'''HideCalculationProgress'''(}}
{{APIPrefix|ByVal}}
{{APIName|sender}}
{{APIName|sender}}
{{APIPrefix|As}}
{{APIPrefix|As}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]])}}<br>
{{APIName|[[WeibullDataSet Class|WeibullDataSet]]}})
{{APIComment|Called by ‘sender’ when calculation progress should be hidden.}}
</li></ul>


== Parameters ==
Parameters
'''sender'''
:''sender'': A [[WeibullDataSet Class|WeibullDataSet]] object.
An WeibullDataSet object


== Usage Example ==
== Usage Example ==

Revision as of 21:33, 21 February 2014


Called by a WeibullDataSet object when calculation progress should be hidden. Hides the calculation progress display.

Syntax

Parameters

sender: A WeibullDataSet object.

Usage Example

Declare a New class that Inherits from WeibullEvents.
Override the method.

       Private Class myEvents
           Inherits WeibullEvents
           Public Overrides Sub HideCalculationProgress(sender As WeibullDataSet)
               MyBase.HideCalculationProgress(sender)
               MessageBox.Show("Additional overridden code here.")
           End Sub
       End Class

Declare the WeibullDataSet.

       Dim WDS as New WeibullDataSet

Use the created myEvents class in place of the one created by the dataset.

       WDS.Events = New myEvents

Hide the current Calculation Progress.

       WDS.Events.HideCalculationProgress(WDS)