# RadioButton

> Creates a RadioButton with no label.

## Definition

* **Type:** Constructor
* **Namespace:** [UnityEngine.UIElements](/engine/6000.6/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

## RadioButton()

Creates a [RadioButton](/engine/6000.6/script-reference/unityengine/uielements/radiobutton.md) with no label.

```csharp
public RadioButton()
```

## RadioButton(string)

Creates a [RadioButton](/engine/6000.6/script-reference/unityengine/uielements/radiobutton.md) with a Label and a default manipulator.

```csharp
public RadioButton(string label)
```

### Parameters

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

### Remarks

The default manipulator makes it possible to activate the RadioButton with a left mouse click.
