DataCategory
DataCategory enumeration
The category of data used when saving to CSV.
public enum DataCategory
Values
Name | Value | Description |
---|---|---|
Tasks | 0 |
Tasks information. |
Resources | 1 |
Resources information. |
Assignments | 2 |
Assignments information. |
Examples
Shows how to use <see cref=“Aspose.Tasks.Saving.CsvOptions” /> to save a project as CSV file.
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
var options = new CsvOptions
{
DataCategory = DataCategory.Resources, TextDelimiter = CsvTextDelimiter.Semicolon, Encoding = Encoding.Unicode, IncludeHeaders = true
};
project.Save(OutDir + "WorkWithCsvOptions_out.csv", options);
See Also
- namespace Aspose.Tasks.Saving
- assembly Aspose.Tasks