# this[]

> Access the r, g, b,a components using [0], [1], [2], [3] respectively.

## Definition

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

## this\[int]

```csharp
public float this[int index] { get; set; }
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)):&#x20;

### Returns

| Type                                                          | Description |
| ------------------------------------------------------------- | ----------- |
| [float](https://learn.microsoft.com/dotnet/api/system.single) |             |

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    Color color = Color.white;
    void Start()
    {
        //The same as color.g = 5
        color[1] = 5;
    }
}
```
