|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
Parameters
None.
Return value
Description
Returns the latest message received from the Scintilla Editor when the event {event:SCI_NOTIFY} was raised.
The messages ID are defined in the library sci_vars.k
For more information: Scintilla Documentation
|
MioScript Sample Code
event.sci:notify
&sci_msg = sci.messageReceived()
if(&sci_msg = &SCN_CHARADDED)
&sci_char = sci.charReceived()
alert("Char "&sci_char" pressed!")
if.end
event.end |
|
|
|