MakeEditor
(Engine-Level Function)
Description: | Returns an editor value which is used by an editor |
Returns: | Editor |
Usage: | Script Only. |
Function Groups: | Editor |
Related to: | AddEditorText | CurrentLine | Editor | ForceEvent | GoToOffset | SetEditMode |
Format: | MakeEditor() |
Parameters: | None |
Comments: | This function is used by all of the functions that require an editor. |
Example:
aNewEditor = MakeEditor(); AddEditorText(aNewEditor, "The start of my editor");
These functions will create an editor called aNewEditor and put the above text string in it.