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="ja" xml:id="set">
22 <refname>set</refname>
23 <refpurpose>グラフィックエンティティオブジェクトまたは
24 またはユーザインターフェイスオブジェクトのプロパティの値を設定する.
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)
46 名前のあるプロパティを設定するエンティティの
48 <literal>h</literal> はハンドルのベクトルとすることができ,
49 この場合,プロパティを修正すると,hに含まれる全てのエンティティに
57 Case-sensitive character string providing the tag or the tags-path leading
58 to the graphic component to process.
59 このパスはgraphicエンティティ<literal>"Tag"</literal> プロパティおよび
60 <literal>"figuretag/entitytag"</literal> (エンティティが図の子の場合)形式による
61 グラフィック階層におけるその親の<literal>"Tag"</literal>プロパティ
64 <literal>"figuretag/entity1tag/entity2tag/entityntag/entitytag"</literal>のように
66 複数のパスを検索する際にワイルドカードも使用できます.
67 パスに一致した最初のエンティティが使用されます.
72 <term>prop, prop2, ...</term>
74 大文字と小文字を区別しない文字列:設定するプロパティの名前.
79 <term>val, val2, ...</term>
81 value to assign to the property. Its type depends on the considered property.
82 If <varname>h</varname> and <varname>val</varname> are vectors or matrices
83 of same size, the multiple settings are done in an element-wise way.
90 Handle of a graphical figure.
106 このルーチンはグラフィックエンティティまたはGUIオブジェクトの
107 特定のプロパティの値を修正する際に使用できます.
108 この場合,ハンドルにドット演算子を使用するのと等価です.
109 例えば,<literal>set(h,"background",5)</literal> は <literal>h.background = 5</literal>と等価です.
111 <para>存在するプロパティの全リストを取得するには,
112 <link linkend="graphics_entities">graphics_entities</link> または
113 (ユーザインタフェースオブジェクトについては)<link linkend="uicontrol">uicontrol</link>を
117 <emphasis role="bold">set(h, prop, val)</emphasis> or
118 <emphasis role="bold">h(prop) = val</emphasis> or
119 <emphasis role="bold">h.prop = val</emphasis>
121 sets the property <varname>prop</varname> of the handle <varname>h</varname> to the
122 value <varname>val.</varname>.
125 When <varname>h</varname> is a matrix of handles,
128 if <varname>val</varname> is a matrix of same size: assignments are done in a
129 element-wise way: <literal>set(h, prop, val)</literal> sets
130 <literal>h(1)(prop)=val(1)</literal>, <literal>h(2)(prop)=val(2)</literal>, ...,
131 <literal>h($)(prop)=val($)</literal>.
132 Most often, the simpler syntax <literal>h(tag) = val</literal> does it as well.
135 otherwise: The same and whole <varname>val</varname> value (that may be scalar
136 or not) is assigned to every <literal>h(i)(prop)</literal> component.
138 If <varname>val</varname> is a cell array of same size as
139 <varname>h</varname>, it is assigned as a whole as well. For instance,
140 <literal>set([gcf() gca()], "user_data", {"Text", 1})</literal> will do
141 <literal>gcf().user_data = {"Text", 1}, gca().user_data = {"Text", 1}</literal>,
142 not <literal>gcf().user_data = "Text", gca().user_data = 1</literal>.
148 With this syntax, <varname>prop</varname> can't be an array of property names.
149 To set multiple properties with a single call to <literal>set(..)</literal>, the
150 following syntax must be used.
153 <emphasis role="bold">set(h, prop1,val1, prop2,val2, ..)</emphasis>
155 sets the property <varname>prop1</varname> of the handle(s) <varname>h</varname> to the
156 value <varname>val1</varname>, its or their property <varname>prop2</varname> to the
157 value <varname>val2</varname>, etc. If <varname>h</varname> and some
158 <varname>val#</varname> are matrices of same size, element-wise assignments are done
159 for the related <varname>prop#</varname> properties, as already described for the
160 <literal>set(h, prop, val)</literal> syntax.
163 <emphasis role="bold">set(tagsPath, prop,val)</emphasis> or
164 <emphasis role="bold">set(tagsPath, prop,val, prop2,val2, ..)</emphasis>
166 Identifying the targeted component(s) to be set can be done as well through their
167 .tag property instead of their handle. This is achieved through the
168 <varname>tagsPath</varname>.
171 In case of multiple entities matching the path, only the first one is processed.
172 Conversely, finding no matching entity yields an error.
175 <emphasis role="bold">set("current_figure", fig)</emphasis>
177 sets the figure of handle <varname>fig</varname> as the active figure. This syntax
178 is equivalent to <literal>scf(fig)</literal> or <literal>scf(figure_id)</literal>,
179 that are shorter and may be prefered.
182 <emphasis role="bold">set("current_axes", axes)</emphasis>
184 sets the axes of handle <varname>axes</varname> as the active one. This syntax
185 is equivalent to <literal>sca(axes)</literal> that is shorter and may be prefered.
188 <emphasis role="bold">set("current_entity", h)</emphasis>
190 sets the graphical component whose <literal>h(1)</literal> is the handle as the
191 current component, as returned by <literal>gce()</literal>. If <varname>h</varname>
192 is a vector of handles, other components <literal>h(2:$)</literal> are ignored.
198 <programlisting role="example"><![CDATA[
199 gda().auto_clear = "off";
202 x = [-.2:0.1:2*%pi]';
203 plot2d(x-.3, [sin(x-1) cos(2*x)], [1 2] );
205 p1 = a.children.children(1);
206 p2 = a.children.children(2);
208 // 名前のあるプロパティをオブジェクト固有の値に設定
210 set(p2, "foreground",13, "polyline_style",2);
211 a.y_location = "middle";
212 a.tight_limits = "on";
213 set(a, "box","off", "sub_tics",[7 0]);
214 set(p1, "mark_mode","on", "mark_style",3);
217 p3 = a.children(1).children;
218 set([a p1 p2 p3], "foreground",5);
222 With a vector of handles:
224 <programlisting role="example"><![CDATA[
225 // With distinct element-wise inputs:
228 set([gcf() gca()], "tag", ["myFigure" "myAxes"]);
232 --> [gcf() gca()].tag
237 --> set([gcf() gca()], "tag", ["myFigure" "myAxes"]);
239 --> [gcf() gca()].tag
245 <programlisting role="example"><![CDATA[
246 // With the same input for all recipients:
248 curves = gce().children;
249 set([gca() ; curves], "thickness", 2);
250 curves(1:20).thickness = 1; // shorter than set(curves(1:20), "thickness", 1)
256 <programlisting role="example"><![CDATA[
257 f = figure("dockable", "off", "menubar", "none", "toolbar", "none", "infobar_visible", "off", "tag", "mainfig");
258 frameHandle = uicontrol("parent", f, "style", "frame", "position", [200 200 190 100], "tag", "myframe");
259 btnHandle = uicontrol("parent", frameHandle, "position", [20 20 150 30], "string", "button", "tag", "example");
260 set("mainfig/myframe/example", "string", "complete path");
261 get("mainfig/myframe/example", "string")
262 set("mainfig/*/example", "string", "wildcard path");
263 get("mainfig/*/example", "string")
264 set("myframe/example", "string", "partial path");
265 get("myframe/example", "string")
269 <refsection role="see also">
271 <simplelist type="inline">
273 <link linkend="get">get</link>
276 <link linkend="scf">scf</link>
279 <link linkend="sdf">sdf</link>
282 <link linkend="sca">sca</link>
285 <link linkend="sda">sda</link>
288 <link linkend="delete">delete</link>
291 <link linkend="copy">copy</link>
294 <link linkend="move">move</link>
297 <link linkend="graphics_entities">graphics_entities</link>
305 <revnumber>5.5.0</revnumber>
309 最初の入力引数をグラフィックエンティティを指すパスとすることが できるようになりました.
312 複数のプロパティ設定を一度に利用できるようになりました.