|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| sci.ID.create(parent, left,top, width,height) |
Parameters
| ID | parent | Parent window ID (main for the main window).
| | INT | left,top | Position of the Scintilla editor in the window.
| | INT | width,height | Size of the Scintilla editor. |
Return value
No value is returned.
Description
Create a new instance of the Scintilla editor.
You can create 5000 instances of the Scintilla editor in the same application.
The first ID is a number between 0 and 4999. This ID is to be used for any further reference to this instance of the Scintilla editor.
For more information: Scintilla Documentation |
MioScript Sample Code
&sci_ID = 0
sci.&sci_ID.create(main, 0,20,200,200) |
|
|
|