Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | sci.ID.create SEARCH    

  Functions
sci.charReceived
sci.eventAuthor
sci.ID.create
sci.ID.getString
sci.ID.pos
sci.ID.sendMessage.NN
sci.messageReceived

  Events
event.sci:notify

  MioScript Reference
> Statements
app...
browser...
dialog...
disk...
draw...
extern...
filename...
keyboard...
menu...
mio...
mouse...
num...
path...
pushButton...
reg...
RS232...
sci...
screen...
shortcut...
sound...
str...
system...
time...
var...
window...

Function
sci.ID.create

Language: MioScript
Product: MioFactory


Syntax

sci.ID.create(parent, left,top, width,height)


Parameters

IDparentParent window ID (main for the main window).
INTleft,topPosition of the Scintilla editor in the window.
INTwidth,heightSize 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)