On After Edit
Code | Can be called by | Definition |
---|---|---|
45 | 4D View Pro area - 4D Write Pro area - Combo Box - Form - Input - Hierarchical List - List Box - List Box Column | The contents of the enterable object that has the focus has just been modified |
Description
General case
This event can be used filter the data entry in keyboard enterable objects at the lowest level.
When it is used, this event is generated after each change made to the contents of an enterable object, regardless of the action that caused the change, i.e.:
- Standard editing actions which modify content like paste, cut, delete or cancel;
- Dropping a value (action similar to paste);
- Any keyboard entry made by the user; in this case, the
On After Edit
event is generated after theOn Before Keystroke
andOn After Keystroke
events, if they are used. - Any modification made using a language command that simulates a user action (i.e.,
POST KEY
).
Within the On After Edit
event, text data being entered is returned by the Get edited text
command.
4D View Pro
The object returned by the FORM Event
command contains:
Property | Type | Description |
---|---|---|
code | longint | On After Edit |
description | text | "On After Edit" |
objectName | text | 4D View Pro area name |
sheetName | text | Name of the sheet of the event |
action | text | "editChange", "valueChanged", "DragDropBlock", "DragFillBlock", "formulaChanged", "clipboardPasted" |
Depending on the action
property value, the event object will contain additional properties.
action = editChange
Property | Type | Description |
---|---|---|
range | object | Cell range |
editingText | variant | The value from the current editor |
action = valueChanged
Property | Type | Description |
---|---|---|
range | object | Cell range |
oldValue | variant | Value of cell before change |
newValue | variant | Value of cell after change |
action = DragDropBlock
Property | Type | Description |
---|---|---|
fromRange | object | Range of source cell range (being dragged) |
toRange | object | Range of the destination cell range (drop location) |
copy | boolean | Specifies if the source range is copied or not |
insert | boolean | Specifies if the source range is inserted or not |
action = DragFillBlock
Property | Type | Description |
---|---|---|
fillRange | object | Range used for fill |
autoFillType | longint | Value used for the fill. |
fillDirection | longint | Direction of the fill. |
action = formulaChanged
Property | Type | Description |
---|---|---|
range | object | Cell range |
formula | text | The formula entered |
action = clipboardPasted
Property | Type | Description |
---|---|---|
range | object | Cell range |
pasteOption | longint | Specifies what is pasted from the clipboard: |
pasteData | object | The data from the clipboard to be pasted |
Example
Here is an example handling an On After Edit
event:
If(FORM Event.code=On After Edit)
If(FORM Event.action="valueChanged")
ALERT("WARNING: You are currently changing the value\
from "+String(FORM Event.oldValue)+\
" to "+String(FORM Event.newValue)+"!")
End if
End if
The above example could generate an event object like this:
{
"code":45;
"description":"On After Edit";
"objectName":"ViewProArea"
"sheetname":"Sheet1";
"action":"valueChanged";
"range": {area:ViewProArea,ranges:[{column:1,row:2,sheet:1}]};
"oldValue":"The quick brown fox";
"newValue":"jumped over the lazy dog";
}