MATLAB: Vertical Line plot – change properties together

dock figurehandlesline plotpropertiesproperty editorselect plots

Hi matlab comunity, I have a plot with 100 lines (using line command). Now, I want to change the color, line style and line width of all these 100 lines at once.
How I usually do this is by clicking on "Show plot tools and Dock Figure" and getting the "Plot Borwser" from the "Desktop" menu and selecting the line I want and change it in the "Property Editor". Really fast and easy. Only problem is that the 100 lines are being taken as individual plots instead of one entity. So now I need select it 100 times and do it.
Example code given below.
x=[10:10:200]; plot(sin(x),'b','LineWidth',2); hold on %plot data
SP = [1:2.5:20]'; %points to draw vertical line
yL = get(gca,'YLim'); line([SP SP],yL,'Color','k','LineWidth',0.5); %vertical line
legend('Data plot','vertical lines');
Is there a way I can select all vertical lines at once? (only vertical lines. not my data plot) Or can I change it in the command window AFTER I already plot it? (This is for a plot I already have. Don't have the data to re-plot)
Thanks

Best Answer

Okay, this is somewhat clunky, but here it is. For the example you give in your original question, follow it with this line:
h = get(gca,'children');
Now you have handles of everything that's plotted on the current axes, and they're all in the variable called h. It looks like h(1) through h(8) are your vertical lines and h(9) is your plot data. so to change the properties of your vertical lines, try
set(h(1:8),'linewidth',5,'color','g')