jsRichEdit Event Members


onCreate
Fired from the jsRichEdit object's onOpen event immediately after creating the RichEdit window. This is the earliest point where the methods of jsRichEdit can be called effectively to make changes in the RichEdit window. The onCreate event would be the normal place to initialize the jsRichEdit object for use in your form similar to the way you might use the onOpen event of the stock dBL classes.
Parameters: None
Return: None
ComCtl32 Version: All

onLink
Fired from the mouse cursor is moved over a URL text string in the editor window when the URLDetect property member is set to true.
Parameters:
<cURL> - The URL text string that the mouse passed over.
Return: None
ComCtl32 Version: All
See also: URL, URLDetect

onProtected
Fired when the user modifies text in the RichEdit window that has been marked as protected.
Parameters: None
Return: None
ComCtl32 Version: All

onSelChange
Fired when the current text selection changes in the RichEdit window. There is always a current text selection in a RichEdit editor window. If multiple characters are selected, then the current text selection is the multipl selected characters. If multiple characters are not selected, then the current text selection is the character immediately after the text insertion caret position. Therefore, any time the text insertion caret is moved for any reason, the onSelChange event will fire.
Parameters: None
Return: None
ComCtl32 Version: All

onUpdate
Fired when activity occurs in the editor window which might cause a need for updating user controls and status on the form which contains a jsRichEdit object. The jsRichEdit onUpdate event is similar to the onUpdate event of the stock dBL ToolBar. It will typically fire when any keyboard or mouse activity occurs in the RichEdit window.
Parameters: None
Return: None
ComCtl32 Version: All