Provided by: erlang-manpages_20.2.2+dfsg-1ubuntu2_all
NAME
wxFileDialog - See external documentation: wxFileDialog.
DESCRIPTION
See external documentation: wxFileDialog. This class is derived (and can use functions) from: wxDialog wxTopLevelWindow wxWindow wxEvtHandler
DATA TYPES
wxFileDialog(): An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.
EXPORTS
new(Parent) -> wxFileDialog() Types: Parent = wxWindow:wxWindow() Equivalent to new(Parent, []). new(Parent, Options::[Option]) -> wxFileDialog() Types: Parent = wxWindow:wxWindow() Option = {message, unicode:chardata()} | {defaultDir, unicode:chardata()} | {defaultFile, unicode:chardata()} | {wildCard, unicode:chardata()} | {style, integer()} | {pos, {X::integer(), Y::integer()}} | {sz, {W::integer(), H::integer()}} See external documentation. getDirectory(This) -> unicode:charlist() Types: This = wxFileDialog() See external documentation. getFilename(This) -> unicode:charlist() Types: This = wxFileDialog() See external documentation. getFilenames(This) -> [unicode:charlist()] Types: This = wxFileDialog() See external documentation. getFilterIndex(This) -> integer() Types: This = wxFileDialog() See external documentation. getMessage(This) -> unicode:charlist() Types: This = wxFileDialog() See external documentation. getPath(This) -> unicode:charlist() Types: This = wxFileDialog() See external documentation. getPaths(This) -> [unicode:charlist()] Types: This = wxFileDialog() See external documentation. getWildcard(This) -> unicode:charlist() Types: This = wxFileDialog() See external documentation. setDirectory(This, Dir) -> ok Types: This = wxFileDialog() Dir = unicode:chardata() See external documentation. setFilename(This, Name) -> ok Types: This = wxFileDialog() Name = unicode:chardata() See external documentation. setFilterIndex(This, FilterIndex) -> ok Types: This = wxFileDialog() FilterIndex = integer() See external documentation. setMessage(This, Message) -> ok Types: This = wxFileDialog() Message = unicode:chardata() See external documentation. setPath(This, Path) -> ok Types: This = wxFileDialog() Path = unicode:chardata() See external documentation. setWildcard(This, WildCard) -> ok Types: This = wxFileDialog() WildCard = unicode:chardata() See external documentation. destroy(This::wxFileDialog()) -> ok Destroys this object, do not use object again
AUTHORS
<> wx 1.8.3 wxFileDialog(3erl)