WeibullDataSet.HideCalculationProgress: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) |
||
Line 14: | Line 14: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment| | {{APIComment|'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) | |||
{{APIComment|'<Additional overridden code here.>}} | |||
End Sub | |||
End Class | |||
{{APIComment|'Set the new Events class.}} | |||
{{APIComment| | WDS.Events = New myEvents | ||
{{APIComment|'Hide calculation progress.}} | |||
WDS.Events.HideCalculationProgress(WDS) | |||
{{APIComment|Hide | |||
Revision as of 22:42, 23 May 2014
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)