Class: cDbRichEdit

Properties  Events  Methods    Index of Classes

Allows the user to enter and edit rich-text format (RTF) text connected to a column in a database table

Hierarchy

cObject
---cUIObject
------DfBaseObject
---------DfBaseWindow
------------DfBaseUIWindow
---------------DfBaseControl
------------------DfBaseRichEdit
---------------------cRichEdit
------------------------cDbRichEdit_
---------------------------cDbRichEditDS_
------------------------------cDbRichEdit

Library: Windows Application Class Library

Package: cDbRichEdit.pkg

Mixins: Extended_DEO_Status_Help_Mixin Extended_DEO_Status_Help_Tooltip_Mixin Extended_DEO_Mixin Extended_DEO_TextEditMixin

Description

The data-aware cDbRichEdit class allows the user to enter and edit text while also providing more advanced formatting features than the plain-text dbEdit class.

The cDbRichEdit class is a data-aware class similar to the cRichEdit class.
The cDbTextEdit class is a plain-text class similar to the cDbRichEdit class.

The default maximum number of characters for the control is 64 KB (65536 bytes or characters). This can be changed or retrieved via piMaxChars.

Sample

Object oRichEdit1 is a cDbRichEdit
    Set Size to 168 276
    Set Location to 6 10
    Set peAnchors to anAll
End_Object    // oDbRichEdit1


Syntax

Use cDbRichEdit.pkg
 
Object oObjectName is a cDbRichEdit
    Set Size to iHeight iWidth
    Set Location to iRow iColumn
End_Object  // oDbObjectName


Text Formatting

An application can send messages to a rich edit control to format characters and paragraphs to retrieve formatting information. Paragraph formatting attributes include alignment, tabs, indents, numbering, and simple tables. For characters, you can specify font name, size, color, and effects such as bold, italic, and protected.

The character formatting of the insertion point is applied to newly inserted text only if the current selection is empty (if the current selection is an insertion point). Otherwise, the new text assumes the character formatting of the text it replaces. If the selection changes, the default character formatting changes to match the first character in the new selection.

Current Selection in a Rich Edit Control

The user can select text in a rich edit control by using the mouse or the keyboard. The current selection is the range of selected characters, or the position of the insertion point if no characters are selected. An application can get information about the current selection, set it, determine when it changes, and show or hide the selection highlight.

Word and Line Breaks

A rich edit control calls a function called a word-break procedure to find breaks between words and to determine where it can break lines. The control uses this information when performing word-wrap operations and when processing CTRL+LEFT ARROW key and CTRL+RIGHT ARROW key combinations. An application can send messages to a rich edit control to replace the default word-break procedure, to retrieve word-break information, and to determine what line a given character falls on.

A linefeed (LF) character can be added to text programmatically by adding ASCII character 10 to a string using the character function. A carriage return (CR) character can be added to text programmatically by adding ASCII character 13 to a string using the character function. Either a LF or CR character will break the current line in the control. Also see AppendTextLn.

Rich Edit Shortcut Keys

Rich edit controls support the following shortcut keys.

KeysOperationsComments
Shift+BackspaceGenerate a LRM/LRM on a bidi keyboardBiDi specific
Ctrl+TabTab
Ctrl+ClearSelect all
Ctrl+Number Pad 5Select all
Ctrl+ASelect all
Ctrl+ECenter alignment
Ctrl+JJustify alignment
Ctrl+RRight alignment
Ctrl+LLeft alignment
Ctrl+CCopy
Ctrl+VPaste
Ctrl+XCut
Ctrl+ZUndo
Ctrl+YRedo
Ctrl+'+' (Ctrl+Shift+'=')Superscript
Ctrl+'='Subscript
Ctrl+1Line spacing = 1 line.
Ctrl+2Line spacing = 2 lines.
Ctrl+5Line spacing = 1.5 lines.
Ctrl+' (apostrophe)Accent acuteAfter pressing the short cut key, press the appropriate letter (for example a, e, or u). This applies to English, French, German, Italian, and Spanish keyboards only.
Ctrl+` (grave)Accent graveSee Ctrl+' comments.
Ctrl+~ (tilde)Accent tildeSee Ctrl+' comments.
Ctrl+; (semicolon)Accent umlautSee Ctrl+' comments.
Ctrl+Shift+6Accent caret (circumflex)See Ctrl+' comments.
Ctrl+, (comma)Accent cedillaSee Ctrl+' comments.
Ctrl+Shift+' (apostrophe)Activate smart quotes
BackspaceIf text is protected, beep and do not delete it. Otherwise, delete previous character.
Ctrl+BackspaceDelete previous word. This generates a VK_F16 code.
F16Same as Backspace.
Ctrl+InsertCopy
Shift+InsertPaste
InsertOverwriteDBCS (double-byte character set) does not overwrite.
Ctrl+Left ArrowMove cursor one word to the left.On bidi keyboard, this depends on the direction of the text.
Ctrl+Right ArrowMove cursor one word to the right.See Ctrl+Left Arrow comments.
Ctrl+Left ShiftLeft alignmentIn BiDi documents, this is for left-to-right reading order.
Ctrl+Right ShiftRight alignmentIn BiDi documents, this is for right-to-left reading order.
Ctrl+Up ArrowMove to the line above.
Ctrl+Down ArrowMove to the line below.
Ctrl+HomeMove to the beginning of the document.
Ctrl+EndMove to the end of the document.
Ctrl+Page UpMove one page up.If in SystemEditMode and Single Line control, do nothing.
Ctrl+Page DownMove one page down.See Ctrl+Page Up comments.
Ctrl+DeleteDelete the next word or selected characters.
Shift+DeleteCut the selected characters.
EscStop drag-drop.While doing a drag-drop of text.
Alt+EscChange the active application.
Alt+XConverts the Unicode hexadecimal value preceding the insertion point to the corresponding Unicode character.
Alt+Shift+XConverts the Unicode character preceding the insertion point to the corresponding Unicode hexadecimal value.
Alt+0xxx (Number Pad)Inserts Unicode values if xxx is greater than 255. When xxx is less than 256, ASCI range text is inserted based on the current keyboard.Must enter decimal values.
Alt+Shift+Ctrl+F12Hex to Unicode.In case Alt+X is already taken for another use.
Alt+Shift+Ctrl+F11Selected text will be output to the debugger window and saved to %temp%\DumpFontInfo.txt.For Debug only (need to set Flag=8 in Win.ini)
Ctrl+Shift+ASet all caps.
Ctrl+Shift+LFiddle bullet style.