PDA

View Full Version : Remove Steps


JOSE
08-23-2004, 09:23 AM
I have a "VS.NET" project that is created dynamically. Is there a way to dynamically remove steps from this project?

kevina
08-23-2004, 11:19 AM
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.