ALTAStressProfile.Clear

From ReliaWiki
Revision as of 18:47, 11 March 2014 by Chris Kahn (talk | contribs)
Jump to navigation Jump to search


Deletes all segments in the profile.

Syntax

  • Clear()

Usage Example

Declare the ALTADataSet. See New ALTADataSet 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()