ALTAStressProfile.AddSegment: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Template:API}}{{Template:APIBreadcrumb|.[[ALTAStressProfile_Class|ALTAStressProfile]]}} | {{Template:API}}{{Template:DeprecatedAPI}}{{Template:APIBreadcrumb|.[[ALTAStressProfile_Class|ALTAStressProfile]]}} | ||
<onlyinclude>Adds a new segment to the stress profile.</onlyinclude> | <onlyinclude><includeonly>{{DeprecatedAPIpic}}</includeonly>Adds a new segment to the stress profile.</onlyinclude> | ||
== Syntax == | == Syntax == | ||
Line 17: | Line 17: | ||
== Example == | == Example == | ||
'''VBA|VB.NET''' | '''VBA''' | ||
{{APIComment|'Declare an ALTAStressProfile object.}} | |||
{{APIPrefix|Dim}} sp {{APIPrefix|As New}} ALTAStressProfile | |||
{{APIComment|'Add segments.}} | |||
{{APIPrefix|Call}} sp.AddSegment(1, 250) | |||
{{APIPrefix|Call}} sp.AddSegment(2, 300) | |||
{{APIPrefix|Call}} sp.AddSegment(3, 400) | |||
'''VB.NET''' | |||
{{APIComment|'Declare an ALTAStressProfile object.}} | {{APIComment|'Declare an ALTAStressProfile object.}} |
Latest revision as of 22:04, 23 March 2017
This method has been deprecated and may be removed in future versions of the Synthesis API. Do not use it in new applications.
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)