Function: GgiEditorSetSource Purpose: Replace a Ggi text editor's text source Category: USER-INTERFACE File: ggi.src Author: J.P. Terlouw Use: #include "ggi.h" ident editor, result; char *source; int size; result = GgiEditorSetSource(editor, source, size); result - copy of the 'editor' argument. editor - editor element. source - the new text source. size - the size of the new text source. Description: GgiEditorSetSource replaces an editor element's text source. If the editor has been created with a size>0, the 'size' argument must reflect the size of the new text. Otherwise it should be 0 or -1. The keyword associated with the editor is reset. Updates: Feb 11, 2000: JPT, Document created.