#1
|
|||
|
|||
Remove Steps
I have a "VS.NET" project that is created dynamically. Is there a way to dynamically remove steps from this project?
|
#2
|
|||
|
|||
You can use Project.Steps.Remove(index) if you know the index of the step to remove.
You can iterate over each step in .Steps to locate the index of the step(s) you want to remove. |
|
|