Talk:WeibullEvents.ShowCalculationProgress/Notes
Jump to navigation
Jump to search
DRAFT
Member of: SynthesisAPI.WeibullEvents
Called when calculation progress should be shown. Shows the current calculation progress if the calculation process is running.
Syntax
- ShowCalculationProgress( 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 ShowCalculationProgress(sender As WeibullDataSet) MyBase.ShowCalculationProgress(sender) '<Additional overridden code here.> End Sub End Class 'Set the new Events class. WDS.Events = New myEvents 'Show calculation progress. WDS.Events.ShowCalculationProgress(WDS)