Class: AMSupportRemovalSequence

Methods

Name Description
Add(IAMProcessStep) Adds a support or base removal step. Throws a notSupportedException if the same step was already added. Usage: removalSequence.Add(Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.BaseRemoval()) removalSequence.Add(Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.SupportRemoval(supportObj))
Find(IAMProcessStep) Returns index of removal object Returns true if successful and false if unsuccessful Usage: C# index1 = removalSequence.Find(new Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.BaseRemoval()); index2 = removalSequence.Find(new Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.SupportRemoval(supportObj)); Python index1 = removalSequence.Find(Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.BaseRemoval()); index2 = removalSequence.Find(Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.SupportRemoval(supportObj));
Remove(Int32) Remove a support or base removal step by index. Returns true if the step was removed Returns false if the step could not be removed because it did not exist Usage: removalSequence.Remove(0)
Swap(IAMProcessStep, IAMProcessStep) Swaps two steps in the Removal sequence. Returns true if successful and false if unsuccessful Usage: C# removalSequence.Swap( new Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.BaseRemoval(), new Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.SupportRemoval(supportObj)); Python removalSequence.Swap( Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.BaseRemoval(), Ansys.ACT.Automation.Mechanical.AdditiveManufacturing.SupportRemoval(supportObj))
Swap(Int32, Int32) Swaps two steps in the Removal sequence by name. Returns true if successful and false if unsuccessful Usage: removalSequence.Swap("Base", "Generated Support 1")

Properties

Name Description
Count