Description
The Project
property of the ExportConfig
class represents the project configuration associated with the export process in the Sandbox editor. This property provides access to the Sandbox.Project
instance, which contains details about the project being exported.
Usage
To use the Project
property, you need to have an instance of the ExportConfig
class. You can then access the Project
property to retrieve or modify the project configuration as needed.
Example
// Example of accessing the Project property
// Assume exportConfig is an instance of ExportConfig
Sandbox.Project project = exportConfig.Project;
// You can now use the project variable to access project-specific details
string projectName = project.Name;
// Perform operations with the project information