# SetStepLabel(string)

> Sets the label that displays the progress indicator's steps.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.5/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public void SetStepLabel(string label)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The steps label.

### Remarks

This label displays a progress indicator's reported steps. For example, a progress indicator that reports "Jobs" might display "11/25 Jobs" and a progress reporting "Assets" might display "8/20 Assets". To report progress in steps, use [Progress.Item.Report](/engine/6000.5/script-reference/unityeditor/progress/item/report.md) with the steps variant.

Additional Resources: [Progress.Item.stepLabel](/engine/6000.5/script-reference/unityeditor/progress/item/steplabel.md), [Progress.Item.currentStep](/engine/6000.5/script-reference/unityeditor/progress/item/currentstep.md), [Progress.Item.totalSteps](/engine/6000.5/script-reference/unityeditor/progress/item/totalsteps.md), [Progress.SetStepLabel](/engine/6000.5/script-reference/unityeditor/progress/setsteplabel.md), [Progress.GetStepLabel](/engine/6000.5/script-reference/unityeditor/progress/getsteplabel.md).
