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

« back to all changes in this revision

Viewing changes to man/fr/graphics/xstringb.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>fr</LANGUAGE>
 
5
  <TITLE>xstringb  </TITLE>
 
6
  <TYPE>Scilab Function  </TYPE>
 
7
  <DATE>April 1993  </DATE>
 
8
  <SHORT_DESCRIPTION name="xstringb"> dessine des cha�nes de caract�res dans une bo�te  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
  <CALLING_SEQUENCE_ITEM>xstringb(x,y,str,w,h,[option])  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
 <PARAM_INDENT>
 
14
  <PARAM_ITEM>
 
15
  <PARAM_NAME>x,y,w,h  </PARAM_NAME>
 
16
  <PARAM_DESCRIPTION>
 
17
  <SP>
 
18
    : vecteur de 4 scalaires d�finissant la bo�te
 
19
</SP>
 
20
  </PARAM_DESCRIPTION> 
 
21
  </PARAM_ITEM>
 
22
  <PARAM_ITEM>
 
23
  <PARAM_NAME>str  </PARAM_NAME>
 
24
  <PARAM_DESCRIPTION>
 
25
  <SP>
 
26
    : matrice de cha�nes de caract�res.
 
27
</SP>
 
28
  </PARAM_DESCRIPTION> 
 
29
  </PARAM_ITEM>
 
30
  <PARAM_ITEM>
 
31
  <PARAM_NAME>option  </PARAM_NAME>
 
32
  <PARAM_DESCRIPTION>
 
33
  <SP>
 
34
    : cha�ne de caract�res.
 
35
</SP>
 
36
  </PARAM_DESCRIPTION> 
 
37
  </PARAM_ITEM>
 
38
 </PARAM_INDENT>
 
39
  </PARAM>
 
40
  <DESCRIPTION>
 
41
  <P>
 
42
    <VERB>xstringb</VERB> dessine la matrice de cha�nes de caract�res <VERB>str</VERB> centr�e dans le 
 
43
    le rectangle <VERB>rect=[x,y,w,h]</VERB> (point en haut � gauche, largeur, hauteur) dans l&apos;�chelle graphique courante.
 
44
    Si <VERB>option</VERB> est donn� avec la valeur <VERB>&quot;fill&quot;</VERB>, la taille de la police est calcul�e 
 
45
    de mani�re � remplir le rectangle au maximum.
 
46
  </P>
 
47
  <P>
 
48
    Taper <VERB>xstringb()</VERB> pour voir une d�monstration de la fonction.
 
49
  </P>
 
50
  </DESCRIPTION>
 
51
  <EXAMPLE><![CDATA[
 
52
str=["Scilab" "n''est ";"pas" "Matlab"];
 
53
plot2d(0,0,[-1,1],"010"," ",[0,0,1,1]);
 
54
r=[0,0,1,0.5];
 
55
xstringb(r(1),r(2),str,r(3),r(4),"fill");
 
56
xrect(r(1),r(2)+r(4),r(3),r(4))
 
57
r=[r(1),r(2)+r(4)+0.01,r(3),r(4)/2];
 
58
xrect(r(1),r(2)+r(4),r(3),r(4))
 
59
xstringb(r(1),r(2),str,r(3),r(4),"fill");
 
60
r=[r(1),r(2)+r(4)+0.01,r(3),r(4)/2];
 
61
xrect(r(1),r(2)+r(4),r(3),r(4))
 
62
xstringb(r(1),r(2),str,r(3),r(4),"fill");
 
63
 ]]></EXAMPLE>
 
64
  <SEE_ALSO>
 
65
    <SEE_ALSO_ITEM> <LINK>titlepage</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>xstring</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>xstringl</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>xtitle</LINK> </SEE_ALSO_ITEM>
 
66
  </SEE_ALSO>
 
67
  <AUTHOR>J.Ph.C.  </AUTHOR>
 
68
</MAN>