Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wxfindreplacedialog(3erl) [linux man page]

wxFindReplaceDialog(3erl)				     Erlang Module Definition					 wxFindReplaceDialog(3erl)

NAME
wxFindReplaceDialog - See external documentation: wxFindReplaceDialog. DESCRIPTION
See external documentation: wxFindReplaceDialog . This class is derived (and can use functions) from: wxDialog wxTopLevelWindow wxWindow wxEvtHandler DATA TYPES
wxFindReplaceDialog() : 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() -> wxFindReplaceDialog() See external documentation . new(Parent::wxWindow() (see module wxWindow), Data::wxFindReplaceData() (see module wxFindReplaceData), Title::string()) -> wxFindReplace- Dialog() Equivalent to new(Parent, Data, Title, []) . new(Parent::wxWindow() (see module wxWindow), Data::wxFindReplaceData() (see module wxFindReplaceData), Title::string(), Options::[Option]) -> wxFindReplaceDialog() Types Option = {style, integer()} See external documentation . create(This::wxFindReplaceDialog(), Parent::wxWindow() (see module wxWindow), Data::wxFindReplaceData() (see module wxFindReplaceData), Title::string()) -> bool() Equivalent to create(This, Parent, Data, Title, []) . create(This::wxFindReplaceDialog(), Parent::wxWindow() (see module wxWindow), Data::wxFindReplaceData() (see module wxFindReplaceData), Title::string(), Options::[Option]) -> bool() Types Option = {style, integer()} See external documentation . getData(This::wxFindReplaceDialog()) -> wxFindReplaceData() (see module wxFindReplaceData) See external documentation . destroy(This::wxFindReplaceDialog()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxFindReplaceDialog(3erl)

Check Out this Related Man Page

wxMiniFrame(3erl)					     Erlang Module Definition						 wxMiniFrame(3erl)

NAME
wxMiniFrame - See external documentation: wxMiniFrame. DESCRIPTION
See external documentation: wxMiniFrame . This class is derived (and can use functions) from: wxFrame wxTopLevelWindow wxWindow wxEvtHandler DATA TYPES
wxMiniFrame() : 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() -> wxMiniFrame() See external documentation . new(Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string()) -> wxMiniFrame() Equivalent to new(Parent, Id, Title, []) . new(Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string(), Options::[Option]) -> wxMiniFrame() Types Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . create(This::wxMiniFrame(), Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string()) -> bool() Equivalent to create(This, Parent, Id, Title, []) . create(This::wxMiniFrame(), Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string(), Options::[Option]) -> bool() Types Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . destroy(This::wxMiniFrame()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxMiniFrame(3erl)
Man Page

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Change Terminal Title

(0 Replies)
Discussion started by: here2learn
0 Replies

2. UNIX for Dummies Questions & Answers

Data gone?

If you have data on an external drive and you re-partition the drive (no format), is the data totally gone? :( (9 Replies)
Discussion started by: shorty
9 Replies

3. UNIX for Advanced & Expert Users

Shell script to convert to Title case

I need a shell script which will convert the given string to Title case. E.g "hi man" to "Hi man" (5 Replies)
Discussion started by: SankarV
5 Replies

4. Shell Programming and Scripting

Data after a string in a file

Hi, I have a file with data as follows: 324dsadfasfgf23<xmlsssssssssssssssssssssssssssssssssssssss<fdf>dfsdf> i need all the data followed by the string <xml? Is it possible to retrieve it? (1 Reply)
Discussion started by: Vijay06
1 Replies

5. Shell Programming and Scripting

Using loops in a search

Title= echo -n "Title: " read Title echo -n "Author:" read Author validation=`grep -i "$Title" fruit | grep -i "$Author" | awk -F":" '{ print $1}'` if ; then clear echo "Error! Book Already Exist" else echo "You may input a new book in/ (1 Reply)
Discussion started by: gregarion
1 Replies

6. Shell Programming and Scripting

Perl - Title Case after apostrophe

I've got: $string =~ s/(\w+)/\u\L$1/g; Which capitalizes each word in the string. The problem is if I have a string with an apostrophe the first letter after it gets capitalized as well. So Bob's becomes Bob'S. Thanks for any quick fixes! (4 Replies)
Discussion started by: mjmtaiwan
4 Replies

7. UNIX for Dummies Questions & Answers

Deleting/Removing sentence from .txt

Hi, now i need to remove the entires i inserted into my .txt file. echo -n "Title: " read Title echo -n "Author: " read Author if grep -q "$Title: $Author" "BookDB.txt"; then sed '$Title: $Author' BookDB.txt echo "Book Title '$Title' removed successfully!" ... (6 Replies)
Discussion started by: santonio
6 Replies