WeibullDataSet.HideCalculationProgress: 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.HideCalculationProgress.Cmt}}
{{Template:InProgress}}
 
== Syntax ==
<ul><li>
HideCalculationProgress(
{{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 HideCalculationProgress(sender As WeibullDataSet)
          MyBase.HideCalculationProgress(sender)
          {{APIComment|'<Additional overridden code here.>}}
      End Sub
  End Class
 
{{APIComment|'Set the new Events class.}}
  WDS.Events = New myEvents
 
{{APIComment|'Hide calculation progress.}}
  WDS.Events.HideCalculationProgress(WDS)

Revision as of 15:34, 6 May 2016