ProjectNode.saveProject Method
Enables saving custom data together with the project in the application object database.
Syntax
protected void saveProject(str buffer)
Run On
Called
Parameters
- buffer
Type: str
A string buffer that must be used for packing the data. The buffer must then be passed on to super().
Remarks
By overriding this method, you can save custom data together with the project in the application object database. It is recommended that the data be formed as an XML string in the following form:
"<APPDATA> ... </APPDATA>"
The data can be retrieved by overriding the loadProject method.