Share via


ProjectNode.loadProject(String) Method

Definition

Enables storing and retrieving custom data in the project definition when a project is loaded.

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

Parameters

_buffer
String

A string that contains the custom data that was saved in the project by saveProject.

Remarks

This method is called when a project is loaded. By overriding saveProject and loadProject, a user can store and retrieve custom data in the project definition. You must call super() for the project to continue loading.

Applies to