OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Modifying Edit Controls

Many uses of edit controls require that your application explicitly substitute, insert, clear, or select text.

TEdit supports those operations, plus the ability to force the edit control to scroll.

TEdit member functions for modifying edit controls

Member functionDescription
TEdit::ClearDelete all text.
TEdit::DeleteSelectionDelete selected text.
TEdit::DeleteSubTextDelete a range of characters.
TEdit::DeleteLineDelete a line of text.
TEdit::InsertInsert text.
TEdit::PastePaste text from Clipboard.
TEdit::SetTextReplace all text.
TEdit::SetSelectionSelect a range of text.
TEdit::ScrollScroll text.
TEdit::ClearModifyClear the modified flag.
TEdit::SearchSearch for text.
TEdit::SetRect or TEdit::SetRectNPSet formatting rectangle.
TEdit::FormatLinesTurn on or off soft line breaks.
TEdit::SetTabStopsSet tab stops.
TEdit::SetHandleSet local memory handle.
TEdit::SetPasswordCharSet password character.
TEdit::SetReadOnlyMake the edit control read-only.
TEdit::SetWordBreakProcSet word-breaking procedure.
TEdit::EmptyUndoBufferEmpty undo buffer.

See Also