Share via


ProjectNode.saveProject(String) Method

Definition

Enables saving custom data together with the project in the application object database.

protected:
 virtual void saveProject(System::String ^ _buffer);
protected virtual void saveProject (string _buffer);
abstract member saveProject : string -> unit
override this.saveProject : string -> unit
Protected Overridable Sub saveProject (_buffer As String)

Parameters

_buffer
String

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.

Applies to