ALTADataSet.AddStressProfile: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) m (Protected "ALTADataSet.AddStressProfile" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]) |
John Leavitt (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
Add a stress profile into the ALTADataSet | Add a stress profile into the ALTADataSet | ||
== Method Syntax == | == Method Syntax == | ||
{{ | {{Template:ALTADataSet.AddStressProfile}} | ||
== Parameters == | == Parameters == |
Revision as of 22:35, 27 January 2014
Add a stress profile into the ALTADataSet
Method Syntax
Parameters
Profile An defined profile of the ALTAStressProfile Class.
Usage Example
Declare the ALTADataSet. See New ALTADataSet for additional details.
Dim ALTADS as New ALTADataSet
Declare an ALTAStressProfile. See ALTAStressProfile for additional details.
Dim sp = New ALTAStressProfile("Profile1") sp.RepeatCycle = True sp.AddSegment(1, 250) sp.AddSegment(2, 300) sp.AddSegment(3, 400)
Add the stress profile.
ALTADS.AddStressProfile(sp)