SourceForge.net wxTextCtrl

wxTextCtrl

wxTextCtrl
Creation Parameters
Events associated with wxTextCtrl:
Functions/Procedures
Supertopics
Subtopics

wxTextCtrl

[proc]
append_text
( atom text, sequence val )

Category: wxTextCtrl

This appends text to the end of the wxTextCtrl buffer.


wxTextCtrl

[func]
can_copy_text
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
can_cut_text
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
can_paste_text
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
can_redo_text
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
can_undo_text
( atom text )

Category: wxTextCtrl


wxTextCtrl

[proc]
change_text_value
( atom text, sequence str )

Category: wxTextCtrl


wxTextCtrl

[proc]
clear_text
( atom text )

Category: wxTextCtrl

Clear text in the text item.


wxTextCtrl

[proc]
copy_text
( atom text )

Category: wxTextCtrl

Copies the selected text to the clipboard.


wxTextCtrl

[proc]
cut_text
( atom text )

Category: wxTextCtrl

Copies the selected text to the clipboard and removes the selection.


wxTextCtrl

[proc]
discard_text_edits
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_default_text_style
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_insertion_point
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_length
( atom text )

Category: wxTextCtrl

Returns the length of the text buffer currently in the Control.


wxTextCtrl

[func]
get_text_line
( atom text, atom line )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_lines
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_line_length
( atom text, atom line )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_number
( atom textctrl )

Category: wxTextCtrl

Returns the value of the text control after passing it through Euphoria's value() function.


wxTextCtrl

[func]
get_text_range
( atom text, atom text_from, atom text_to )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_selection
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_selection_range
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_style
( atom text, atom position )

Category: wxTextCtrl


wxTextCtrl

[func]
get_text_value
( atom text )

Category: wxTextCtrl

This retrives the text stored in a wxTextCtrl buffer. It will return the actual string, if you want the actual value, such as a numeric value, use get_text_number() instead.


wxTextCtrl

[func]
is_text_editable
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
is_text_empty
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
is_text_modified
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
is_text_multi_line
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
is_text_single_line
( atom text )

Category: wxTextCtrl


wxTextCtrl

[func]
load_text_file
( atom text, sequence file )

Category: wxTextCtrl


wxTextCtrl

[proc]
mark_text_dirty
( atom text )

Category: wxTextCtrl


wxTextCtrl

[proc]
paste_text
( atom text )

Category: wxTextCtrl

Pastes the text from the clipboard to the text item.


wxTextCtrl

[proc]
redo_text
( atom text )

Category: wxTextCtrl

Redo last operation in the text item.


wxTextCtrl

[proc]
replace_text
( atom text, atom pos_from, atom pos_to, sequence str )

Category: wxTextCtrl


wxTextCtrl

[func]
save_text_file
( atom text, sequence file )

Category: wxTextCtrl


wxTextCtrl

[proc]
select_all_text
( atom text )

Category: wxTextCtrl

Set's the highlight area for the wxTextCtrl to the entire buffer. Similarly, you can do: set_text_selection(myEdit,0,-1) or set_text_selection(myEdit,0,get_text_length(myEdit))


wxTextCtrl

[proc]
set_default_text_style
( atom text, atom attr )

Category: wxTextCtrl

Changes the default style to use for the new text which is going to be added to the control using write_text().


wxTextCtrl

[proc]
set_maximum_text_length
( atom text, atom max_text )

Category: wxTextCtrl

Set maximum number of lines in text item.


wxTextCtrl

[proc]
set_text
( atom text, sequence val )

Category: wxTextCtrl

Replaces the text in the control with val.


wxTextCtrl

[proc]
set_text_editable
( atom text, atom editable )

Category: wxTextCtrl


wxTextCtrl

[proc]
set_text_insertion_point
( atom text, atom pos )

Category: wxTextCtrl


wxTextCtrl

[proc]
set_text_insertion_point_end
( atom text )

Category: wxTextCtrl


wxTextCtrl

[proc]
set_text_modified
( atom text, atom modified )

Category: wxTextCtrl


wxTextCtrl

[proc]
set_text_selection
( atom text, atom first, atom last )

Category: wxTextCtrl

Set the highlight area in a wxTextCtrl


wxTextCtrl

[proc]
set_text_style
( atom text, atom first, atom last, atom attr )

Category: wxTextCtrl


wxTextCtrl

[proc]
show_text_position
( atom text, atom pos )

Category: wxTextCtrl


wxTextCtrl

[proc]
undo_text
( atom text )

Returns atom
Category: wxTextCtrl

Undo last operation in the text item.


wxTextCtrl

[proc]
write_text
( atom ctrl, sequence text )

Category: wxTextCtrl

Writes the text at the current insertion point.