WeibullDataSet.HideCalculationProgress: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:AWEAPIClass}}
{{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.}}
== ALTA Declaration  ==
{{APIPrefix|Public Overridable Sub}}
{{APIName|HideCalculationProgress(}}
{{APIPrefix|ByVal}}
{{APIName|sender}}
{{APIPrefix|As}}
{{APIName|[[ALTADataSet Class|ALTADataSet]])}}


{{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.  Substitute [[ALTAEvents Class|ALTAEvents]] for ALTA.}}<br>
{{APIComment|Declare the WeibullEvents.}}<br>
{{APIComment|Declare the WeibullDataSet. Substitute [[ALTADataSet Class|ALTADataSet]] for ALTA.}}<br>
{{APIComment|Declare the WeibullDataSet.}}<br>
{{APIComment|Note: The WeibullDataSet/ALTADataSet constructor already creates a new WeibullEvents, which could be used in place of WEvents in the example below.}}<br>
{{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)