# HelpBox

> Makes a help box with a message to the user.

## Definition

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

## HelpBox(Rect, string, MessageType)

Makes a help box with a message to the user.

```csharp
public static void HelpBox(Rect position, string message, MessageType type)
```

### Parameters

**** (\[Rect]\(/engine/6000.5/script-reference/unityengine/rect)): Rectangle on the screen to draw the help box within.**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The message text.**** (\[MessageType]\(/engine/6000.5/script-reference/unityeditor/messagetype)): The type of message.

## HelpBox(Rect, GUIContent)

Makes a help box with a message to the user.

```csharp
public static void HelpBox(Rect position, GUIContent content)
```

### Parameters

**** (\[Rect]\(/engine/6000.5/script-reference/unityengine/rect)): Rectangle on the screen to draw the help box within.**** (\[GUIContent]\(/engine/6000.5/script-reference/unityengine/guicontent)): The message contents. If an image is provided, it will be displayed to the left of the message. The expect image size is 32x32 pixels.
