Exporting the results¶
Exporting all¶
It is possible to export all the results in one line code.
// Create an instance of InstantTerra
InstantTerra instantTerra = new InstantTerra();
// Get the current project
Project project = instantTerra.GetProject();
// Export all
project.ExportAll();
This method ExportAll()
uses
all export nodes to compute and export results.
Warning
If an export node is invalid, or another problem occurs during the export, then all the remaining exports are canceled.