ALTAStressProfile.AddSegment: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 17: Line 17:
== Example ==
== Example ==
    
    
  '''VBA|VB.NET'''
  '''VBA'''
   
   
  {{APIComment|'Declare an ALTAStressProfile object.}}
  {{APIComment|'Declare an ALTAStressProfile object.}}

Revision as of 22:04, 19 April 2016

APIWiki.png


Member of: SynthesisAPI.ALTAStressProfile


Adds a new segment to the stress profile.

Syntax

.AddSegment(SegmentEnd, Stress) 

Parameters

SegmentEnd

Required. Double. The time at the end of this segment.

Stress

Required. Double. The stress value during this segment.


Example

VBA

 'Declare an ALTAStressProfile object. 
 Dim sp As New ALTAStressProfile
 
 'Add segments. 
 Call sp.AddSegment(1, 250)
 Call sp.AddSegment(2, 300)
 Call sp.AddSegment(3, 400)
VB.NET

 'Declare an ALTAStressProfile object. 
 Dim sp As New ALTAStressProfile
 
 'Add segments. 
 sp.AddSegment(1, 250)
 sp.AddSegment(2, 300)
 sp.AddSegment(3, 400)