Job Manager Tools¶
Properties of a tool (if any) can be found in the Properties Window in MIKE WORKBENCH.
Job export tool¶
Tool for exporting jobs to files on disk.
| Tool Info | Job export tool |
|---|---|
| Tools Explorer | /Output Tools/Job export tool |
| NuGet Package | DHI.MikeOperations.JobManager.Tools.JobExport |
| API Reference | DHI.Solutions.JobManager.Tools.JobExportTool.IJobExportTool |
| Input Items | One or more jobs |
| Output Items | No output items |
Tool Properties
| Display Name | Name | Description |
|---|---|---|
| Export to | ExportFormat | Gets or sets the export format |
| Output path | ExportPath | Gets or sets the export path |
| Group | Group | Gets or sets the group of the spreadsheet |
| Name | SpreadSheetName | Gets or sets the name of the spreadsheet |
Code Sample
// Get the tool.
var tool = application.Tools.CreateNew("Job export tool") as DHI.Solutions.JobManager.Tools.JobExportTool.IJobExportTool;
# Get the tool.
tool = app.Tools.CreateNew("Job export tool")
# Get the tool.
tool = DHI.Solutions.JobManager.Tools.JobExportTool.IJobExportTool(app.Tools.CreateNew("Job export tool"))