Talk:WeibullEvents.HideCalculationProgress/Notes
Jump to navigation
Jump to search
DRAFT
Member of: SynthesisAPI.WeibullEvents
Called when calculation progress should be hidden. Hides the calculation progress display.
Syntax
- HideCalculationProgress( sender As WeibullDataSet )
Parameters
- sender: A WeibullDataSet object.
Usage Example
'Overrides requested. Create a new class, inherit WeibullEvents, and set the dataset's events. Private Class myEvents Inherits WeibullEvents Public Overrides Sub HideCalculationProgress(sender As WeibullDataSet) MyBase.HideCalculationProgress(sender) '<Additional overridden code here.> End Sub End Class 'Set the new Events class. WDS.Events = New myEvents 'Hide calculation progress. WDS.Events.HideCalculationProgress(WDS)