WeibullDataSet.HideCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) |
Albert Szeto (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:APIClass|WeibullEvents Class|WeibullEvents}} | ||
Hides the calculation progress display. | Hides the calculation progress display. | ||
Line 11: | Line 11: | ||
{{APIPrefix|As}} | {{APIPrefix|As}} | ||
{{APIName|[[WeibullDataSet Class|WeibullDataSet]])}} | {{APIName|[[WeibullDataSet Class|WeibullDataSet]])}} | ||
{{APIComment|Called by ‘sender’ when calculation progress should be hidden.}} | {{APIComment|Called by ‘sender’ when calculation progress should be hidden.}} | ||
Line 27: | Line 16: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|Declare the WeibullEvents | {{APIComment|Declare the WeibullEvents.}}<br> | ||
{{APIComment|Declare the WeibullDataSet | {{APIComment|Declare the WeibullDataSet.}}<br> | ||
{{APIComment|Note: The WeibullDataSet | {{APIComment|Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.}}<br> | ||
Dim WEvents as New WeibullEvents | Dim WEvents as New WeibullEvents | ||
Dim WDS as New WeibullDataSet | Dim WDS as New WeibullDataSet |
Revision as of 22:52, 16 September 2013
Hides the calculation progress display.
Weibull Declaration
Public Overridable Sub HideCalculationProgress( ByVal sender As WeibullDataSet)
Called by ‘sender’ when calculation progress should be hidden.
Usage Example
Declare the WeibullEvents.
Declare the WeibullDataSet.
Note: The WeibullDataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.
Dim WEvents as New WeibullEvents Dim WDS as New WeibullDataSet
Hide the current Calculation Progress.
WEvents.HideCalculationProgress(WDS)