ProjectNode.saveProject(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.