~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: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

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