~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/tksci/figure.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>figure</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE> 04 June 1998</DATE>
 
8
  <SHORT_DESCRIPTION name="figure"> create a figure</SHORT_DESCRIPTION>
 
9
  <PARAM>
 
10
    <PARAM_INDENT>
 
11
      <PARAM_ITEM>
 
12
        <PARAM_NAME>o</PARAM_NAME>
 
13
        <PARAM_DESCRIPTION>
 
14
          <SP>h : integer Handle of the window to create. If not specified, the first free handle is used</SP>
 
15
        </PARAM_DESCRIPTION>
 
16
      </PARAM_ITEM>
 
17
      <PARAM_ITEM>
 
18
        <PARAM_NAME>o</PARAM_NAME>
 
19
        <PARAM_DESCRIPTION>
 
20
          <SP>prop{1, 2 ...} : character string name of a property to set</SP>
 
21
        </PARAM_DESCRIPTION>
 
22
      </PARAM_ITEM>
 
23
      <PARAM_ITEM>
 
24
        <PARAM_NAME>o</PARAM_NAME>
 
25
        <PARAM_DESCRIPTION>
 
26
          <SP>val{1, 2 ...} : scilab object value to give to the corresponding property</SP>
 
27
        </PARAM_DESCRIPTION>
 
28
      </PARAM_ITEM>
 
29
      <PARAM_ITEM>
 
30
        <PARAM_NAME>o</PARAM_NAME>
 
31
        <PARAM_DESCRIPTION>
 
32
          <SP>hn : handle of the newly created window</SP>
 
33
        </PARAM_DESCRIPTION>
 
34
      </PARAM_ITEM>
 
35
    </PARAM_INDENT>
 
36
  </PARAM>
 
37
  <DESCRIPTION>
 
38
    <P>
 
39
    This routine creates a tksci figure (toplevel window). If a handle is
 
40
    given, the figure corresponding to this handle is created .
 
41
    Otherwise, the window is created with the first free handle, that is
 
42
    the lowest integer not already used by a window.  The property named
 
43
    'position' allows to control the geometrical aspect of the control.
 
44
    It is a [ 1,4] real vector x y w h where the letters stand for the x
 
45
    location of the left bottom corner, the y location of the left bottom
 
46
    corner, the width and the height of the uicontrol.
 
47
     
 
48
    One can also set this property by giving a string where the fields are
 
49
    separated by a '|', ie &quot;x|y|w|h&quot;.</P>
 
50
  </DESCRIPTION>
 
51
  <EXAMPLE>
 
52
<![CDATA[
 
53
h=figure(3);
 
54
// creates  figure number 1.
 
55
uicontrol( h, 'style','text', ...
 
56
 'string','This is a figure', ...
 
57
 'position',[50 70 100 100], ...
 
58
 'fontsize',15);
 
59
// put a  text in figure 3
 
60
figure();
 
61
// create figure 1
 
62
uicontrol( 'style','text', ...
 
63
 'string','Another figure', ...
 
64
 'position',[50 70 100 100], ...
 
65
 'fontsize',15);
 
66
// put a text in figure 1
 
67
close();
 
68
// close the current graphic window (ie fig. 1)
 
69
close(h);
 
70
// close figure 3
 
71
 ]]>
 
72
  </EXAMPLE>
 
73
  <SEE_ALSO>
 
74
    <SEE_ALSO_ITEM>
 
75
      <LINK>close</LINK>
 
76
    </SEE_ALSO_ITEM>
 
77
    <SEE_ALSO_ITEM>
 
78
      <LINK>gcf</LINK>
 
79
    </SEE_ALSO_ITEM>
 
80
  </SEE_ALSO>
 
81
  <AUTHOR>Bertrand Guiheneuf</AUTHOR>
 
82
</MAN>