>>-anEditControl~SetModified(--bool--)-------------------------><
The SetModified method sets the flag to indicate whether the edit control has been modified.
The only argument is:
The flag indicates that the text has been altered.
For all other cases.
In the following example, the Save method stores the dialog contents in a file and clears the modified flag. See also the SetText example.
::method Save /* write contents to file */ edit = MyDialog~GetEditControl("TEXT") ... edit~SetModified(0)