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

« back to all changes in this revision

Viewing changes to man/fileio/xgetfile.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
 
xgetfile          Scilab Group          Scilab Function            xgetfile
2
 
NAME
3
 
   xgetfile - dialog to get a file path
4
 
  
5
 
CALLING SEQUENCE
6
 
 path=xgetfile([title='string'])
7
 
 path=xgetfile(file_mask,[title='string'])
8
 
 path=xgetfile(file_mask,dir,[title='string'])
9
 
 path=xgetfile(file_mask,dir,'string')
10
 
PARAMETERS
11
 
 file_mask    : a character string which gives the file mask to use for
12
 
              file selection. file_mask is written with Unix convention.
13
 
              the default value is '*'.
14
 
              
15
 
 dir          : a character string which gives the initial directory used
16
 
              for file search. by default xgetfile uses the previously
17
 
              selected directory.
18
 
              
19
 
 path         : is the user selected file path if user answers "Ok" or the
20
 
              " " string if user answers "Cancel"
21
 
              
22
 
 title='string'
23
 
               :Optional arguments which gives the title for the xgetfile window.
24
 
              
25
 
DESCRIPTION
26
 
   Creates a dialog window for file selection
27
 
  
28
 
EXAMPLE
29
 
 xgetfile()
30
 
 xgetfile('*.sci','SCI/macros/xdess')
31
 
 xgetfile(title='Choose a file name ')
32
 
SEE ALSO
33
 
   x_dialog, file, read, write, exec, getf   
34