WeibullDataSet.ShowCalculationProgress: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullEvents Class|WeibullEvents}}
{{Template:API}}{{Template:APIBreadcrumb|.[[WeibullEvents Class|WeibullEvents]]}}
{{Template:WeibullEvents.ShowCalculationProgress.Cmt}}
{{Template:InProgress}}
 
== Syntax ==
<ul><li>
ShowCalculationProgress(
{{APIName|sender}}
{{APIPrefix|As}}
{{APIName|[[WeibullDataSet Class|WeibullDataSet]]}})
</li></ul>
 
Parameters
:''sender'': A [[WeibullDataSet Class|WeibullDataSet]] object.
 
== Usage Example ==
{{APIComment|'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)
          {{APIComment|'<Additional overridden code here.>}}
      End Sub
  End Class
 
{{APIComment|'Set the new Events class.}}
  WDS.Events = New myEvents
 
{{APIComment|'Show calculation progress.}}
  WDS.Events.ShowCalculationProgress(WDS)

Revision as of 15:31, 6 May 2016