jsRichEdit Property Members
advancedTypography
Indicates the current setting of advanced typography in the editor. Advanced
typography must be on (true) for advanced line wrap and line justification support.
True = Advanced line wrap and justification support.
False = Simple line wrap and no justification support.
The advancedTypography property member is set by the
getTypographyOptions
method.
Default: true
See also:
paraAlignment,
setTypographyOptions
caretIndex
Indicates the zero-based character position of the
text caret. The caretIndex property member is set by the
getCaretIndex
method.
Default: 0
caretX
Indicates the zero-based horizontal position in pixels of the text
caret in the editor. The caretX property member is set by the
getCaretX
method.
Default: 0
See also:
caretY
caretY
Indicates the zero-based vertical position in pixels of the text
caret in the editor. The caretY property member is set by the
getCaretX
method.
Default: 0
See also:
caretX
changing
Indicates whether the jsRichEdit class is performing a lengthy operation. If
true, the class is in the process of setting and/or retrieving character or
paragraph attributes, and therefore the state of the property members is
currently being changed. The changing property member should be tested for a
value of false before attempting to retrieve other property member values.
The changing property member is set by the
setCharAttribute,
setCharFormat,
setFont* methods,
and
setParaFormat
methods.
Default: false
See also:
setCharAttribute,
setCharFormat,
setFont* methods,
setParaFormat
colorBkgnd
Indicates the color of the non-text background
area within the editor window. The colorBkgnd property member is set by the
setColorBkgnd
method.
Default: 0xFFFFFF (white)
See also:
colorText,
colorTextBkgnd
colorSelector
Indicates the color of the selector bar. The selector bar is a vertical bar
drawn along the left edge of the editor window. Dragging the mouse vertically
on the selector bar will select (highlight) lines of text in the editor window.
The colorBkgnd property member is set by the
setColorBkgnd
method.
Default: 0xFFA0A0 (light blue)
See also:
colorBkgnd,
colorText,
colorTextBkgnd,
ecoSelectionBar,
paintSelector
colorText
Indicates the color of the current text in the editor.
The colorText property member is set by the
setColorText
method.
Default: 0x000000 (black)
See also:
colorBkgnd,
colorTextBkgnd
colorTextBkgnd
Indicates the color of the leading area surrounding the individual
text characters for the current text in the editor. The colorTextBkgnd property
member is set by the
setColorTextBkgnd
method.
Default: 0xFFFFFF (white)
See also:
colorBkgnd,
colorText
columnNo
Indicates the character position of the text
caret within the current line. The columnNo property member is set by the
getColumnNo
method.
Default: 0
dataLink
The field object that is linked to the editor. The dataLink
property functions in much the same way as it does for the stock classes such as
Editor and EntryField. It can have a field object assigned to it for CHARACTER or
MEMO field types, as well as most other character-based fields from SQL databases.
NOTE: The dataLink property member differs from the stock Editor class in that
it only accepts an object reference to a field object such as:
form.jsRichEdit1.dataLink := form.query1.rowset.fields["Notes"]
The dataLink property member does not accept a character expression of the
dataLink as the stock editor does such as:
form.editor1.dataLink := "FILE c:\MyFile.txt"
To use files with jsRichEdit, use the
streamFromFile
and
streamToFile
methods.
Default: null
See also:
dataLinkLoad,
dataLinkSave,
streamFromFile,
streamToFile
ecoAutoHScroll
Indicates the automatic display of the horizontal ScrollBar in the editor.
True = Automatically show horizontal scrollbar when text extends beyond
the right border of the editor window.
False = Do not automatically show/hide the horizontal scrollbar.
The ecoAutoHScroll property member is set by the
getOptions
method.
Default: true
See also:
setOptions
ecoAutoVScroll
Indicates the automatic display of the vertical ScrollBar in the editor.
True = Automatically show vertical scrollbar when text extends beyond
the bottom border of the editor window.
False = Do not automatically show/hide the vertical scrollbar.
The ecoAutoVScroll property member is set by the
getOptions
method.
Default: true
See also:
setOptions
ecoAutoWordSelect
Indicates the automatic selection of a word in the editor when the word is
double-clicked with the mouse.
True = Automatically select (highlight) a word within the editor window
when it is double-clicked.
False = Do not automatically select a word when it is double-clicked.
The ecoAutoWordSelect property member is set by the
getOptions
method.
Default: true
See also:
setOptions
ecoNoHideSel
Indicates the automatic hiding of the current selection when the editor window
loses input focus.
True = Do not hide the current selection in the editor window when the
editor window loses input focus.
False = Hide the current selection in the editor window when the editor
window loses input focus.
The ecoNoHideSel property member is set by the
getOptions
method.
Default: true
See also:
setOptions
ecoReadOnly
Controls the read-only status of the editor contents.
True = The contents of the editor window cannot be modified by the user..
False = The contents of the editor window can be modified by the user.
The ecoReadOnly property member is set by the
getOptions
method.
Default: false
See also:
setOptions
ecoSelectionBar
Controls the display of the selection bar at the left edge of the
editor window.
True = Display a selectionBar at the left edge of the editor window.
False = Do not display a selectionBar at the left edge of the editor window.
The ecoSelectionBar property member is set by the
getOptions
method.
Default: true
See also:
setOptions
ecoWantReturn
Indicates whether the editor accepts carriage returns.
True = The editor will accept carriage returns (Enter key) and insert
them at the current text caret position.
False = The editor will not accept carriage returns.
Thie ecoWantReturn property member is set by the
getOptions
method.
Default: true
See also:
setOptions
fileName
Name (if any) of the current file loaded into the editor.
The fileName property member is set by the
loadFromFile
and streamFromFile
methods.
Default: [none]
fileReadOnly
Indicates whether the file currently loaded in the editor is editable.
True = The file currently loaded in the editor is marked as readonly
by the operating system's file system.
False = The file currently loaded in the editor is not marked as
readonly by the operating system's file system.
The fileReadOnly property member is set by the
loadFromFile
and streamFromFile
methods.
Default: false
findFormLeft
Saves the left position of the jsRichEdit Find Text/Replace Text
dialog window. The findFormLeft property member is set by the
findDialog
method.
Default: 0
findFormTop
Saves the top position of the jsRichEdit Find Text/Replace Text
dialog window. The findFormTop property member is set by the
findDialog
method.
Default: 0
findMatchCase
Controls whether find operations
should match case when performing text searches in the editor.
True = The editor should match the case of the editor contents to the
case of the find target string when performing text search operations..
False = The editor should ignore case when performing text search operations.
The findMatchCase property member is set by the
findDialog
method.
Default: false
findMatchWords
Controls whether the find operations should match whole words only
when performing text searches in the editor.
True = The editor should match whole words only when performing text
search operations.
False = The editor should match whole and partial words when performing
text search operations.
The findMatchWords property member is set by the
findDialog
method.
Default: false
findStartFrom
Position from which to start the text search operation:
"B" = Start from the Bottom (end) of the text in the editor.
"C" = Start from the Current text character position.
"T" = Start from the Top (beginning) of the text in the editor.
The findStartFrom property member is set by the
findDialog
method.
Default: "C"
findStop
Controls whether find operations should stop or wrap when the
beginning or end of the editor contents are reached.
True = The editor should stop the text search when it reaches the
beginning/end of the text.
False = When the text search reaches the beginning/end of the text, the
search should wrap to the end/beginning of the text and continue the
text search operation.
The findStop property member is set by the
findDialog
method.
Default: false
findText
The target string used during the most recent text search operation.
The findText property member is set by the
findDialog
method.
Default: [none]
findUp
Controls the direction of a text search operation.
True = Search from the Current/Bottom position upwards to the
beginning of the text in the editor window.
False = Search from the Current/Top position downwards to the end of
the text in the editor window.
The findUp property member is set by the
findDialog
method.
Default: false
fontBold
In richtext mode, indicates the Bold attribute of the
text font at the current text caret position.
In plaintext mode, indicates the Bold attribute of the
default text font of the editor window.
True = The font's Bold attribute is set.
False = The font's Bold attribute is not set.
The fontBold property member is set by the
getCharFormat
method.
Default: false
See also:
setFontBold
fontCharSet
In richtext mode, indicates the character set of the
text font at the current text caret position.
In plaintext mode, indicates the character set of the
default text font of the editor window.
The fontCharSet property member is set by the
getCharFormat
method.
Default: 0
fontFamily
In richtext mode, indicates the font family of the
text font at the current text caret position.
In plaintext mode, indicates the font family of the
default text font of the editor window.
The fontFamily property member is set by the
getCharFormat
method.
Default: 32
fontHidden
Indicates whether the current character(s) are hidden or not hidden.
Default: false
See also:
setFontHidden
fontItalic
In richtext mode, indicates the Italic attribute of
the text font at the current text caret position.
In plaintext mode, indicates the Italic attribute of the
default text font of the editor window.
True = The font's Italic attribute is set.
False = The font's Italic attribute is not set.
The fontItalic property member is set by the
getCharFormat
method.
Default: false
See also:
setFontItalic
fontName
In richtext mode, indicates the text font at the current text caret position.
In plaintext mode, indicates the default text font of the editor window.
The fontName property member is set by the
getCharFormat
method.
Default: "Arial"
See also:
setFontName
fontPitch
In richtext mode, indicates the Pitch attribute of
the text font at the current text caret position.
In plaintext mode, indicates the Pitch attribute of the
default text font of the editor window.
The fontPitch property member is set by the
getCharFormat
method.
Default: 2
fontProtected
Indicates whether the current character(s) are protected or unprotected.
Default: false
See also:
setFontProtected
fontRevised
Indicates whether the current character(s) have been revised.
Default: false
See also:
setFontRevised
fontRevisionAuthor
Indicates the author identifier number of the current character(s).
Default: 0
See also:
setFontRevisionAuthor
fontSize
In richtext mode, indicates the Size attribute of the
text font at the current text caret position.
In plaintext mode, indicates the Size attribute of the
default text font of the editor window.
The fontSize property member is set by the
getCharFormat
method.
Default: 10
See also:
setFontSize
fontStrikeOut
In richtext mode, indicates the StrikeOut attribute
of the text font at the current text caret position.
In plaintext mode, indicates the StrikeOut attribute of
the default text font of the editor window.
True = The font's StrikeOut attribute is set.
False = The font's StrikeOut attribute is not set.
The fontStrikeOut property member is set by the
getCharFormat
method.
Default: false
See also:
setFontStrikeOut
fontSubScript
Indicates whether the current character(s) are subscripted characters.
Default: false
See also:
setFontSubScript
fontSuperScript
Indicates whether the current character(s) are superscripted characters.
Default: false
See also:
setFontSuperScript
fontUnderline
In richtext mode, indicates the Underline attribute of
the text font at the current text caret position.
In plaintext mode, indicates the Underline attribute of
the default text font of the editor window.
True = The font's Underline attribute is set.
False = The font's Underline attribute is not set.
The fontUnderline property member is set by the
getCharFormat
method.
Default: false
See also:
setFontUnderline
fontUnderlineType
In richtext mode, indicates the UnderlineType
attribute of the text font at the current text caret position.
In plaintext mode, indicates the UnderlineType attribute
of the default text font of the editor window.
0 = None
1 = Underline
2 = Word (Displayed as normal underline in rich edit)
3 = Double (Displayed as normal underline in rich edit)
4 = Dotted
The fontUnderlineType property member is set by the
getCharFormat
method.
Default: 1
See also:
setFontUnderline
fontYOffset
Indicates the vertical offset attribute of the
text font at the current text caret position.
The fontYOffset property member is set by the
getCharFormat
method.
Default: 10
See also:
setFontYOffset
goToFormLeft
Saves the left position of the jsRichEdit Go to Line dialog window.
The goToFormLeft property member is set by the
goToLineDialog
method.
Default: 0
See also:
goToLineDialog
goToFormTop
Saves the top position of the jsRichEdit Go to Line dialog window.
The goToFormTop property member is set by the
goToLineDialog
method.
Default: 0
See also:
goToLineDialog
limitText
The maximum number of characters that the editor will accept from
user input. The limitText property is set by the
getLimitText
method.
Default: 32767
See also:
exLimitText
lineNo
The line number of the current text caret position in the editor.
The lineNo property is set by the
getLineNo
method.
Default: 0
See also:
getLineNo,
goToLine,
goToLineDialog
marginLeft
The amount of margin space between the left edge of the editor
window and the text.
The marginLeft property member is set by the
setMarginLeft
method.
Default: 0
See also:
marginRight
marginRight
When in wrap mode, the amount of margin space between the right
edge of the editor window and the text.
The marginRight property member is set by the
setMarginRight
method.
Default: 0
See also:
marginLeft
modeFind
Indicates whether the editor is currently performing a Find Text operation.
True = The editor is currently performing a Find Text operation.
False = The editor is not currently performing a Find Text operation.
The modeFind property member is set by the
findDialog
method.
Default: false
modeMultiCP
Controls whether the editor accepts text input using multiple codepages.
True = The editor will accept text input consisting of multiple codepages.
False = The editor will only accept text input consisting of a single codepage.
The modeMultiCP property member is set by the
getTextMode
method.
Default: false
See also:
setTextMode
modeRichText
Controls whether the editor is in richtext mode or plaintext mode.
True = The editor is in richtext mode.
False = The editor is in plaintext mode.
The modeRichText property member is set by the
getTextMode
method.
Default: true
See also:
setTextMode
paintSelector
Controls whether the editor window paints the selector bar with the color
specified by the
colorSelector
property member. By default, the common controls RichEdit editor window provides
for displaying or hiding the selector bar, but
does not allow for specifying the color of the selector bar. The
colorSelector and
paintSelector property
members are added enhancements in the jsRichEdit class.
Default: true
See also:
colorSelector,
ecoSelectionBar
paraAlignment
Indicates the alignment of the text within the current paragraph in the editor.
1 = Left aligned
2 = Right aligned
3 = Centered
4 = Justify within left and right borders of the editor window.
Note: Option 4 (Justify) requires
advancedTypography
to be set to true also.
The paraAlignment property member is set by the
getParaFormat
method.
Default: 1
See also:
setParaAlignment
paraLineSpacing
Indicates the spacing between lines of text within the
current paragraph in the editor. paraLineSpacing works in conjunction with the
paraLineSpacingRule property member. The paraLineSpacing property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaLineSpacing
paraLineSpacingRule
Indicates how line spacing is performed between lines
of text within the current paragraph in the editor.
0 = Single-spaced lines
1 = 1.5 spaced lines
2 = Double-spaced lines
3 = Use paraLineSpacing value in twips for line spacing but single-spaced is minimum.
4 = Use paraLineSpacing value in twips for line spacing as absolute (no minimum).
5 = Use paraLineSpacing value / 20 (essentially points) for line spacing as
absolute (no minimum).
The paraLineSpacingRule property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaLineSpacingRule
paraNumbering
Indicates bulleting and numbering of the current paragraph in the editor.
0 = None
1 = Bullets
2 = Numbers (1, 2, 3,...)
3 = Lowercase alpha (a, b, c,...)
4 = Uppercase alpha (A, B, C,...)
5 = Lowercase Roman numerals (i, ii, iii,...)
6 = Uppercase Roman numerals (I, II, III,...)
The paraNumbering property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaNumbering
paraNumberingStart
Indicates the starting number/letter of the current
paragraph if the current paragraph is numbered. paraNumberingStart works in conjunction with the
paraNumbering
property member.
The paraNumberingStart property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaNumberingStart
paraNumberingStyle
Indicates the delimiting of numbering characters for the current paragraph if the
current paragraph is numbered. paraNumberingStyle works in conjunction with the
paraNumbering
property member.
0 = Display as: n)
1 = Display as: (n)
2 = Display as: n.
3 = Display as: n
4 = Hide numbers.
The paraNumberingStyle property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaNumberingStyle
paraNumberingTab
Indicates the tab positon for text display to the right
of the numbering characters and delimiters. This value is in twips (1/1440th inch).
paraNumberingTab works in conjunction with the
paraNumbering
property
member.
The paraNumberingTab property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaNumberingTab
paraOffset
Indicates the indenting/outdenting of the lines of text
after the first line of text in the current paragraph in the editor. This value
is in twips (1/1440th inch). If positive, the second and subsequent lines are
outdented. If negative, the second and subsequent lines are indented.
The paraOffset property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaOffset
paraRightIndent
Indicates the indentation of the right edge of the text in the
current paragraph in the editor relative to right margin. This value is in twips
(1/1440th inch).
The paraRightIndent property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaRightIndent
paraSpaceAfter
Indicates the amount of vertical space after the
paragraph end for the current paragraph in the editor.
This value is in twips (1/1440th inch).
The paraSpaceAfter property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaSpaceAfter
paraSpaceBefore
Indicates the amount of vertical space before the
paragraph start for the current paragraph in the editor.
This value is in twips (1/1440th inch).
The paraSpaceBefore property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaSpaceBefore
paraStartIndent
Indicates the indentation of the first line of text in
the current paragraph in the editor. This value is in twips (1/1440th inch).
The paraStartIndent property member is set by the
getParaFormat
method.
Default: 0
See also:
setParaStartIndent
passwordChar
Controls whether the editor functions in password display mode, and
if in password display mode, the character used as the password display character.
If passwordChar is empty, all characters typed are displayed as typed by the user.
If passwordChar is assigned a valid single character value, the character is
substituted for the display as the user types characters.
The passwordChar property member is set by the
getPasswordChar
method.
Default: [none]
See also:
setPasswordChar
pointerX
Saves the horizontal position of the mouse cursor in pixels after a call to the
cursorPosition
method member.
Default: 0
pointerY
Saves the vertical position of the mouse cursor in pixels after a call to the
cursorPosition
method member.
Default: 0
popupEnable
Controls whether the popup menu referenced by the popupMenu property
member is displayed when the user right-clicks the editor using the mouse. The
popupEnable property member works in conjunction with the
popupMenu
property member.
True = Display the popup menu referenced by the popupMenu property member.
False = Ignore the right-click and do nothing.
The popupEnable property member is only initialized to true when the
jsRichEdit object is first created. It only exists so that the dBL
application code can block the activation of the popup menu if required.
Default: true
popupMenu
Object reference to the editor's
PopupMenu object. The popupMenu property member works in conjunction with the
popupEnable
property member. When the editor is right-clicked, if the popupMenu property member
does not contain a valid object reference and if the popupEnable property member
= true, the editor will instantiate and display the built-in default popup context
menu. If the popupMenu property contains a valid object reference and if the
popupEnable property member = true, the editor will display the popupMenu that
is referenced by the popupMenu property member. This allows for a custom popup
to be used with jsRichEdit. If the popupEnable property member = false, then
no popup menu will appear when the editor is right-clicked.
Default: null
posX
Indicates the X position of a character in the editor in pixels.
The posX property member is set by the
posFromChar
method.
Default: 0
posY
Indicates the Y position of a character in the editor in pixels.
The posY property member is set by the
posFromChar
method.
Default: 0
prevAutoScale
Controls whether the Print Preview output is automaticlally scaled to the editor window.
True = Automatically scale the Print Preview output to the editor window.
False = Do not scale the Print Preview output to the editor window.
Default: true
preview
Indicates whether the editor is in Print Preview mode.
True = The editor is in Print Preview mode.
False = The editor is not in Print Preview mode.
The preview property member is set by the
printPreview
method.
Default: false
prevPage
Indicates the current page number displayed when the editor is in Print Preview mode.
The prevPage property member is set by the
printPreview
method.
Default: 0
prevScaleFactor
Controls the scaling factor used to scale the display output in
Print Preview mode. This value must be between 0 and 1.00, and represents the
scaling factor as a percentage divided by 100.
Default: 1
prtAppName
Name prefix assigned to print jobs when printing the editor
contents. When the editor contents are printed, if the system spooler is active,
the name assigned to the print job will be displayed in the list of waiting
print jobs in the spooler display window.
Default: _app.frameWin.text
prtDefaultDocName
Default name suffix assigned to print jobs when printing the editor
contents. When the editor contents are printed, if the system spooler is active,
the name assigned to the print job will be displayed in the list of waiting print
jobs in the spooler display window. The prtDefaultDocName property member
specifies the default name suffix used if printing a new file that has not yet
been saved and therefore has no filename assigned to it.
Default: "New Document"
prtJob
Unique print job identifier number (handle) to the most recent print operation.
This identifier can be used to query the system spooler to determine the current
status of the spooling of the print job.
The prtJob property member is set by the
print
and printClient
methods.
Default: 0
prtPageStarts
Array of zero-based character indices. Each element indicates
the zero-based character position within the text of the editor that
starts each page display in Print Preview mode.
The prtPageStarts property member is set by the
print
and printPreview
methods.
Default: Array
ptr
Object reference to the printer object used by jsRichEdit for
displaying the printer selection and page setup dialogs, printing and spooling
of text, and determining printer capabilities.
Default: object
rectBottom
Bottom position of the editor text viewing rectangle within the editor window.
The rectBottom property member is set by the
getRect
method.
Default: 0
See also:
setRect
rectLeft
Left position of the editor text viewing rectangle within the editor window.
The rectLeft property member is set by the
getRect
method.
Default: 0
See also:
setRect
rectRight
Right position of the editor text viewing rectangle within the editor window.
The rectRight property member is set by the
getRect
method.
Default: 0
See also:
setRect
rectTop
Top position of the editor text viewing rectangle within the editor window.
The rectTop property member is set by the
getRect
method.
Default: 0
See also:
setRect
replaceText
The replacement string used during the most recent text replace operation.
The replaceText property member is set by the
findDialog
method
when the Replace option is used.
Default: [none]
scrollX
Indicates the amount of horizontal scrolling of the editor display.
The scrollX property member is set by the
getScrollPos
method.
Default: 0
See also:
setScrollPos
scrollY
Indicates the amount of vertical scrolling of the editor display.
The scrollY property member is set by the
getScrollPos
method.
Default: 0
See also:
setScrollPos
selectionHidden
Flag indicating whether the current selection (if any) is hidden.
Note that this does not affect whether the selected text is hidden or not, but
rather whether the selected status (highlighting) is displayed or hidden. The
selectionHidden property member is set by the
hideSelection
method.
Default: false
selEnd
Indicates the zero-based character index indicating the last
character of the currently selected text (if any) in the editor. If there is no
text currently selected in the editor, selEnd will be equal to
selStart,
and
this value is the current text caret position within the text in the
editor. The selEnd property member is set by the
exGetSel
method.
Default: 0
See also:
exSetSel
selEndLine
Indicates the zero-based line index indicating the line number
containing the ending character of the currently selected text (if any) in the
editor. If there is no text currently selected in the editor, selEndLine
indicates the current text caret line. This property member is set by the
getSelectionLines
method.
Default: 0
See also:
exSetSel
selStart
Indicates the zero-based character index indicating the first
character of the currently selected text (if any) in the editor. If there is
no text currently selected in the editor,
selEnd
will be equal to selStart, and this value is the current text caret
position within the text in the editor. This property member is set by the
exGetSel
method.
Default: 0
See also:
exSetSel
selStartLine
Indicates the zero-based line index indicating the line number
containing the starting character of the currently selected text (if any) in
the editor. If there is no text currently selected in the editor, selStartLine
indicates the current text caret line.This property member is set by the
getSelectionLines
method.
Default: 0
See also:
exSetSel
sesBeepOnMaxText
Controls whether the editor should sound a beep alarm when the user
attempts to enter more characters than specified in the maxChars property member.
True = Beep if the user attempts to exceed maxChars.
False = Do not beep if the user attempts to exceed maxChars.
The sesBeepOnMaxText property member is set by the
getEditStyle
method.
Default: true
See also:
setEditStyle
sesEmulateSysEdit
Controls whether the editor should attempt to emulate a plain vanilla SysEdit editor style.
True = Attempt to emulate SysEdit behavior.
False = Do not emulate SysEdit behavior.
The sesEmulateSysEdit property member is set by the
getEditStyle
method.
See also:
setEditStyle
sesExtendBackColor
Controls whether to extend the text background color to the edges
of the editor window or only the area occupied by the text.
True = Extend the background color to the edges of the editor window.
False = Do not extend the background color to the edges of the editor window.
The sesExtendBackColor property member is set by the
getEditStyle
method.
Default: false
See also:
setEditStyle
sesLowerCase
Controls whether to convert characters typed by the user to lowercase.
True = Convert input characters to lowercase.
False = Do not change casing of input characters.
The sesLowerCase property member is set by the
getEditStyle
method.
Default: false
See also:
setEditStyle
sesScrollOnKillFocus
Controls whether the editor should automatically scroll to the
beginning of the text when the editor loses input focus.
True = Scroll to the beginning of the text when input focus is lost.
False = Stay at current position in the text when input focus is lost.
The sesScrollOnKillFocus property member is set by the
getEditStyle
method.
Default: false
See also:
setEditStyle
sesUpperCase
Indicates whether characters typed by the user are converted to uppercase.
True = Convert input characters to uppercase.
False = Do not change casing of input characters.
The sesUpperCase property member is set by the
getEditStyle
method.
Default: false
See also:
setEditStyle
sesXltCrCrLfToCr
Controls whether the editor should automatically translate CRCRLF
character sequences to a single CR character.
True = Translate CRCRLF to CR.
False = Do not translate CRCRLF.
The sesXltCrCrLfToCr property member is set by the
getEditStyle
method.
Default: false
See also:
setEditStyle
undoLimit
Controls the number of undo actions that can be saved in the undo queue.
The undoLimit property member is set by the
setUndoLimit
method.
Default: 100
URL
Contains the URL text string of the URL that the mouse was most recently moved
over. This property member is only valid if the
URLDetect
property member is true. The URL property member would normally be used during
onLink
event processing.
Default: ""
See also:
onLink,
URLDetect
URLDetect
Controls whether the editor colors the text of text strings it
interprets to be valid URLs.
True = Automatically color detected URL text strings.
False = Do not color detected URL text strings.
The URLDetect property member is set by the
getAutoURLDetect
method.
Default: false
See also:
onLink,
URL
version
The version number of the jsRichEdit.CC file and jsRichEdit class.
This is a character representation of the version.
Default: None
versionDLL
The detected version number of the riched20.dll file on the system that jsRichEdit
is currently running on.
Default: [none]
See also:
versionRichEdit
versionRichEdit
The detected version number of the rich edit window class on the system that jsRichEdit
is currently running on. The jsRichEdit class is written to support richedit
version 3.00 or 2.00. Note however that any particular system may or may not have
richedit version 3.00 available. To verify whether rich edit version 3.00 is
available on a system, check the file properties of riched20.dll in the
\windows\system or \widows\system32 folder for a file version of 5.30.yy.zzzz or
greater. In general, version 3.00 is on all Windows ME, 2000, and XP systems.
Also, Windows 95/98/NT systems with any Office 2000 (or later) applicatons (Word,
Excel, Access, etc) should have version 3.00 installed.
Default: [none]
See also:
versionDLL
view
Indicates the current wrap formatting view of the editor when in edit mode.
0 = Unwrapped view - Text is not wrapped.
1 = Normal View - Text is wrapped within the editor window.
2 = Wrap text in the editor as the text will be wrapped when printed to
the system default printer.
The view property member is set by the
setView
method.
Default: 1
zoom
The zoom factor for text display when in edit mode. This value is
expressed as a percentage where 100 is normal size. Values < 100 are reduced
size. Values > 100 are enlarged size.
The zoom property member is set by the
getZoom
method.
Default: 100
See also:
setZoom