updateJadeTextEditAppSettings

updateJadeTextEditAppSettings(text: String): Integer;

The updateJadeTextEditAppSettings method of the Application class adds or modifies one or more JadeTextEdit class settings specified in the text parameter in the current application settings table.

Separate settings in the text parameter with the CrLf end-of-line sequence. Each setting has the format key=value, as shown in the example in the following code fragment.

int := app.updateJadeTextEditAppSettings("lead=tin" & CrLf & "tin=gold");

This method returns zero (0) if the application settings were successfully updated or it returns a JADE error code if the action was unsuccessful. (For details about the causes and actions of JADE error codes, see the appropriate error code in the JADEMsgs.pdf file.)

See also the Application class getJadeTextEditGlobalSettings and getJadeTextEditOneSetting methods and the JadeTextEdit class updateAppSettings method.