ALTAStressProfile.Clear: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
== Usage Example ==
== Usage Example ==


{{APIComment|Declare the ALTADataSet. See [[ALTADataSet Constructors]] for additional details.}}
{{APIComment|Declare the ALTADataSet. See [[ALTADataSet Constructors]] for additional details.}}
        Dim ALTADS as New ALTADataSet
  Dim ALTADS as New ALTADataSet
 
 
{{APIComment|Declare an [[ALTAStressProfile Class|ALTAStressProfile]]. See [[ALTAStressProfile Class|ALTAStressProfile]] for additional details.}}
{{APIComment|Declare an [[ALTAStressProfile Class|ALTAStressProfile]]. See [[ALTAStressProfile Class|ALTAStressProfile]] for additional details.}}
        Dim sp = New ALTAStressProfile("Profile1")
  Dim sp = New ALTAStressProfile("Profile1")
        sp.RepeatCycle = True
  sp.RepeatCycle = True
        sp.AddSegment(1, 250)
  sp.AddSegment(1, 250)
        sp.AddSegment(2, 300)
  sp.AddSegment(2, 300)
        sp.AddSegment(3, 400)
  sp.AddSegment(3, 400)
 
 
{{APIComment|Clear all segments in the profile.}}
{{APIComment|Clear all segments in the profile.}}
        sp.Clear()
  sp.Clear()

Revision as of 16:34, 15 May 2014


Deletes all segments in the profile.

Syntax

  • Clear()

Usage Example

 Declare the ALTADataSet. See ALTADataSet Constructors for additional details. 
 Dim ALTADS as New ALTADataSet
 
 Declare an ALTAStressProfile. See ALTAStressProfile for additional details. 
 Dim sp = New ALTAStressProfile("Profile1")
 sp.RepeatCycle = True
 sp.AddSegment(1, 250)
 sp.AddSegment(2, 300)
 sp.AddSegment(3, 400)
 
 Clear all segments in the profile. 
 sp.Clear()