ALTAStressProfile.GetSegments

From ReliaWiki
Revision as of 16:33, 15 May 2014 by Chris Kahn (talk | contribs)
Jump to navigation Jump to search


Returns an array of ALTASegment objects that define each segment in the profile.

Syntax

Usage Example

 'Declare a new ALTAStressProfile. See ALTAStressProfile for additional details. 
 Dim SP As New ALTAStressProfile("Profile1")
 
 'Add segments. 
 SP.AddSegment(1, 250)
 SP.AddSegment(2, 300)
 SP.AddSegment(3, 400)
 
 'Get segments. 
 Dim StressSegments() As ALTASegment
 StressSegments = SP.GetSegments