Man Scilab

getlinestyle
Scilab Function

getlinestyle - dialog to select linestyle

Calling Sequence

k=getlinestyle()

Parameters

Description

getlinestyle opens a graphic window to select a line style.

Examples

set("figure_style","new")
x=0:0.1:10;
plot2d(x,sin(x))
e=gce(); // store the agregation containing the plot
e.children(1).line_style = getlinestyle();

See Also

getmark ,  

Back