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

« back to all changes in this revision

Viewing changes to man/fileio/xgetfile.man

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