ChartExportResult Class
Definition
Describes the outcome of a chart export operation.
public class ChartExportResult
Properties
| Name | Description |
|---|---|
| Canceled | Gets whether the export was canceled. |
| Exception | Gets the exception that caused the export to fail, if any. |
| Succeeded | Gets whether the export completed successfully. |
| Target | Gets the export target path or target description. |
Canceled Property
Gets whether the export was canceled.
public bool Canceled { get; set; }
Exception Property
Gets the exception that caused the export to fail, if any.
public Exception Exception { get; set; }
Succeeded Property
Gets whether the export completed successfully.
public bool Succeeded { get; set; }
Target Property
Gets the export target path or target description.
public string Target { get; set; }