1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
5 * Copyright (C) INRIA - Djalel Abdemouche
6 * Copyright (C) 2012 - 2016 - Scilab Enterprises
7 * Copyright (C) 2019 - Samuel GOUGEON
9 * This file is hereby licensed under the terms of the GNU GPL v2.0,
10 * pursuant to article 5.3.4 of the CeCILL v.2.1.
11 * This file was originally licensed under the terms of the CeCILL v2.1,
12 * and continues to be available under such terms.
13 * For more information, see the COPYING file which you should have received
14 * along with this program.
17 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"
18 xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML"
19 xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org"
20 xml:lang="en" xml:id="set">
22 <refname>set</refname>
24 set properties of some graphic objects or uimenus or uicontrol interactive components
30 set(h, prop,val) // h(prop) = val, h.prop = val
31 set(h, prop,val, prop2,val2, ..)
32 set(tagsPath, prop,val)
33 set(tagsPath, prop,val, prop2,val2, ..)
35 set('current_figure', fig) // scf(fig)
36 set('current_axes', axes) // sca(axes)
37 set('current_entity', h)
41 <title>Arguments</title>
46 Handle of the graphic entity whose properti(es) must be set.
47 <literal>h</literal> can be a vector of handles. In this case, set(..) modifies
48 the property for all <literal>h</literal> components.
55 Case-sensitive character string providing the tag or the tags-path leading
56 to the graphic component to process.
57 This path is made of the strings recorded in the <literal>.Tag</literal>
58 property of the parent figure and of the chain of its children down to
59 the target, like <literal>"figuretag"</literal> to target the figure
60 with figure.tag=="figuretag", or <literal>"figuretag/entitytag"</literal>
61 to target one of its children (as for an axes, a main uimenu item, a
62 block of legends,..), or <literal>"figuretag/entity1tag/entity2tag"</literal>,
63 etc. Wildcards can also be used for multi-paths search.
68 <term>prop, prop2, ...</term>
70 Scalar characters strings: Case-insensitive name of the properties to set.
75 <term>val, val2, ...</term>
77 value to assign to the property. Its type depends on the considered property.
78 If <varname>h</varname> and <varname>val</varname> are vectors or matrices
79 of same size, the multiple settings are done in an element-wise way.
86 Handle of a graphical figure.
100 <title>Description</title>
102 This function can be used to modify the value of a specified property from a graphics
103 entity or a GUI object. In this case it is equivalent to use the dot operator on a handle.
104 For example, <literal>set(h,"background",5)</literal> is equivalent to
105 <literal>h.background = 5</literal>.
108 To get the list of all existing properties, please see the pages of
109 <link linkend="graphics_entities">graphics_entities</link> or
110 <link linkend="uicontrol_properties">uicontrol_properties</link> for User Interface
114 <emphasis role="bold">set(h, prop, val)</emphasis> or
115 <emphasis role="bold">h(prop) = val</emphasis> or
116 <emphasis role="bold">h.prop = val</emphasis>
118 sets the property <varname>prop</varname> of the handle <varname>h</varname> to the
119 value <varname>val.</varname>.
122 When <varname>h</varname> is a matrix of handles,
125 if <varname>val</varname> is a matrix of same size: assignments are done in a
126 element-wise way: <literal>set(h, prop, val)</literal> sets
127 <literal>h(1)(prop)=val(1)</literal>, <literal>h(2)(prop)=val(2)</literal>, ...,
128 <literal>h($)(prop)=val($)</literal>.
129 Most often, the simpler syntax <literal>h(tag) = val</literal> does it as well.
132 otherwise: The same and whole <varname>val</varname> value (that may be scalar
133 or not) is assigned to every <literal>h(i)(prop)</literal> component.
135 If <varname>val</varname> is a cell array of same size as
136 <varname>h</varname>, it is assigned as a whole as well. For instance,
137 <literal>set([gcf() gca()], "user_data", {"Text", 1})</literal> will do
138 <literal>gcf().user_data = {"Text", 1}, gca().user_data = {"Text", 1}</literal>,
139 not <literal>gcf().user_data = "Text", gca().user_data = 1</literal>.
145 With this syntax, <varname>prop</varname> can't be an array of property names.
146 To set multiple properties with a single call to <literal>set(..)</literal>, the
147 following syntax must be used.
150 <emphasis role="bold">set(h, prop1,val1, prop2,val2, ..)</emphasis>
152 sets the property <varname>prop1</varname> of the handle(s) <varname>h</varname> to the
153 value <varname>val1</varname>, its or their property <varname>prop2</varname> to the
154 value <varname>val2</varname>, etc. If <varname>h</varname> and some
155 <varname>val#</varname> are matrices of same size, element-wise assignments are done
156 for the related <varname>prop#</varname> properties, as already described for the
157 <literal>set(h, prop, val)</literal> syntax.
160 <emphasis role="bold">set(tagsPath, prop,val)</emphasis> or
161 <emphasis role="bold">set(tagsPath, prop,val, prop2,val2, ..)</emphasis>
163 Identifying the targeted component(s) to be set can be done as well through their
164 .tag property instead of their handle. This is achieved through the
165 <varname>tagsPath</varname>.
168 In case of multiple entities matching the path, only the first one is processed.
169 Conversely, finding no matching entity yields an error.
172 <emphasis role="bold">set("current_figure", fig)</emphasis>
174 sets the figure of handle <varname>fig</varname> as the active figure. This syntax
175 is equivalent to <literal>scf(fig)</literal> or <literal>scf(figure_id)</literal>,
176 that are shorter and may be prefered.
179 <emphasis role="bold">set("current_axes", axes)</emphasis>
181 sets the axes of handle <varname>axes</varname> as the active one. This syntax
182 is equivalent to <literal>sca(axes)</literal> that is shorter and may be prefered.
185 <emphasis role="bold">set("current_entity", h)</emphasis>
187 sets the graphical component whose <literal>h(1)</literal> is the handle as the
188 current component, as returned by <literal>gce()</literal>. If <varname>h</varname>
189 is a vector of handles, other components <literal>h(2:$)</literal> are ignored.
193 <title>Examples</title>
195 <programlisting role="example"><![CDATA[
196 gda().auto_clear = "off";
198 // Example with a Plot 2D
199 x = [-.2:0.1:2*%pi]';
200 plot2d(x-.3, [sin(x-1) cos(2*x)], [1 2] );
202 p1 = a.children.children(1);
203 p2 = a.children.children(2);
205 // set the named properties to the specified values on the objects
207 set(p2, "foreground",13, "polyline_style",2);
208 a.y_location = "middle";
209 a.tight_limits = "on";
210 set(a, "box","off", "sub_tics",[7 0]);
211 set(p1, "mark_mode","on", "mark_style",3);
214 p3 = a.children(1).children;
215 set([a p1 p2 p3], "foreground",5);
219 With a vector of handles:
221 <programlisting role="example"><![CDATA[
222 // With distinct element-wise inputs:
225 set([gcf() gca()], "tag", ["myFigure" "myAxes"]);
229 --> [gcf() gca()].tag
234 --> set([gcf() gca()], "tag", ["myFigure" "myAxes"]);
236 --> [gcf() gca()].tag
242 <programlisting role="example"><![CDATA[
243 // With the same input for all recipients:
245 curves = gce().children;
246 set([gca() ; curves], "thickness", 2);
247 curves(1:20).thickness = 1; // shorter than set(curves(1:20), "thickness", 1)
253 <programlisting role="example"><![CDATA[
254 f = figure("dockable", "off", "menubar", "none", "toolbar", "none", "infobar_visible", "off", "tag", "mainfig");
255 frameHandle = uicontrol("parent", f, "style", "frame", "position", [200 200 190 100], "tag", "myframe");
256 btnHandle = uicontrol("parent", frameHandle, "position", [20 20 150 30], "string", "button", "tag", "example");
258 set("mainfig/myframe/example", "string", "complete path");
259 get("mainfig/myframe/example", "string")
260 set("mainfig/*/example", "string", "wildcard path");
261 get("mainfig/*/example", "string")
262 set("myframe/example", "string", "partial path");
263 get("myframe/example", "string")
267 <refsection role="see also">
268 <title>See also</title>
269 <simplelist type="inline">
271 <link linkend="get">get</link>
274 <link linkend="scf">scf</link>
277 <link linkend="sdf">sdf</link>
280 <link linkend="sca">sca</link>
283 <link linkend="sda">sda</link>
286 <link linkend="delete">delete</link>
289 <link linkend="copy">copy</link>
292 <link linkend="move">move</link>
295 <link linkend="graphics_entities">graphics_entities</link>
300 <title>History</title>
303 <revnumber>5.5.0</revnumber>
307 First input argument can now be a path pointing to the graphic entity.
310 Multiple property setting is now available at once.