ProjectNode.loadProject(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 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.