> For the complete documentation index, see [llms.txt](https://docs.tankandhealerstudio.com/assets/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tankandhealerstudio.com/assets/ultimateradialmenu/documentation/ultimateradialmenu/static-methods/returncomponent.md).

# ReturnComponent

{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```csharp
using UnityEngine;

public class RadialMenuExample : MonoBehaviour
{
	UltimateRadialMenu radialMenu;

	void Start ()
	{
		// Store the Ultimate Radial Menu registered with the name: ExampleMenu
		radialMenu = UltimateRadialMenu.ReturnComponent( "ExampleMenu" );
	}
}
```

{% endcode %}
