ALTAStressProfile.Clear: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:


== Usage Example ==
== Usage Example ==
 
<div style="margin-right: 150px;">
  {{APIComment|Declare a new ALTADataSet object. See [[ALTADataSet Constructors]].}}
  {{APIComment|Declare a new ALTADataSet object. See [[ALTADataSet Constructors]].}}
   Dim ALTADS as New ALTADataSet
   Dim ALTADS as New ALTADataSet
Line 19: Line 19:
  {{APIComment|Clear all segments in the profile.}}
  {{APIComment|Clear all segments in the profile.}}
   sp.Clear()
   sp.Clear()
</div>

Revision as of 16:35, 15 May 2014


Deletes all segments in the profile.

Syntax

  • Clear()

Usage Example

 Declare a new ALTADataSet object. See ALTADataSet Constructors. 
 Dim ALTADS as New ALTADataSet
 
 Declare a new ALTAStressProfile object. See ALTAStressProfile. 
 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()