# Progress.Status

> Indicates the status of a progress indicator's associated task.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public enum Progress.Status
```

## Fields

| Value                                                                                 | Description                               |
| ------------------------------------------------------------------------------------- | ----------------------------------------- |
| [Canceled](/engine/6000.0/script-reference/unityeditor/progress/status/canceled.md)   | Indicates that the task was canceled.     |
| [Failed](/engine/6000.0/script-reference/unityeditor/progress/status/failed.md)       | Indicates that the task failed.           |
| [Paused](/engine/6000.0/script-reference/unityeditor/progress/status/paused.md)       | Indicates that the task is paused.        |
| [Running](/engine/6000.0/script-reference/unityeditor/progress/status/running.md)     | Indicates that the task is still running. |
| [Succeeded](/engine/6000.0/script-reference/unityeditor/progress/status/succeeded.md) | Indicates that the task succeeded.        |
