ALTAStressProfile.AddSegment: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:APIClass|ALTAStressProfile Class|ALTAStressProfile}}
{{Template:API}}{{Template:APIBreadcrumb|.[[ALTAStressProfile_Class|ALTAStressProfile]]}}
{{Template:ALTAStressProfile.AddSegment.Cmt}}


== Method Syntax ==
*AddSegment( SegmentEnd {{APIPrefix|As Double}} , Stress {{APIPrefix|As Double}} )


Parameters
<onlyinclude>Adds a new segment to the stress profile.</onlyinclude>
:''SegmentEnd'': The time at the end of this segment.
:''Stress'': The stress during this segment.


== Usage Example ==
== 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 ==
    
    
  {{APIComment|'Declare an [[ALTAStressProfile Class|ALTAStressProfile]].}}
'''VBA|VB.NET'''
   Dim sp = New ALTAStressProfile("Profile1")
  {{APIComment|'Declare an ALTAStressProfile object.}}
   {{APIPrefix|Dim}} sp {{APIPrefix|As New}} ALTAStressProfile
    
    
  {{APIComment|'Add segments.}}
  {{APIComment|'Add segments.}}

Revision as of 21:03, 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|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)