# zero

> Shorthand for writing new Rect(0,0,0,0).

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.6/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static Rect zero { get; }
```

### Remarks

Additional Resources:  [Rect](/engine/6000.6/script-reference/unityengine/rect.md).

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    void Start()
    {
        Rect initialBox = Rect.zero;
    }
}
```
