"insertAt"
    
    Adds a text to a textEdit document at the defined position.
Synopsis
void insertAt(string text, int para, int pos)
Parameters
| Parameter | Description | 
|---|---|
| text | The text to be added | 
| para | The X position | 
| pos | The y position | 
Description
Adds a text to a textEdit document at the defined position.
                
                Example
            
The following example adds a text to a textEdit document at position 3,3.
main()
{
  TEXT_EDIT1.insertAt("insertAT",3,3);
}
        Assignment
textEdit
