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

« back to all changes in this revision

Viewing changes to man/graphics/getfont.cat

  • 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
 
getfont           Scilab Group           Scilab Function            getfont
2
 
NAME
3
 
   getfont - dialog to select font
4
 
  
5
 
CALLING SEQUENCE
6
 
 [fId,fSize]=getfont()
7
 
 [fId,fSize]=getfont(str)
8
 
PARAMETERS
9
 
 str  : character (e.g. "a")
10
 
      
11
 
 fId  : integer, the number of the selected font
12
 
      
13
 
 fSize
14
 
       : integer, the size of the selected font
15
 
      
16
 
DESCRIPTION
17
 
   getfont opens a graphic window to select a font. Example of use:
18
 
  [fId,fSize]=getfont(). xset("font",fId,fSize). plot2d(0,0,rect=[0 0 10
19
 
  10],axesflag=0);xstring(5,5,"string").
20
 
  
21
 
SEE ALSO
22
 
   xset, getmark
23