# SetAllVertices

> Fills the values of the allocated vertices with values copied directly from an array. When this method is called, it is not possible to use MeshWriteData.SetNextVertex to fill the allocated vertices array.

## Definition

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

## SetAllVertices(Vertex\[])

Fills the values of the allocated vertices with values copied directly from an array. When this method is called, it is not possible to use [MeshWriteData.SetNextVertex](/engine/6000.6/script-reference/unityengine/uielements/meshwritedata/setnextvertex.md) to fill the allocated vertices array.

```csharp
public void SetAllVertices(Vertex[] vertices)
```

### Parameters

**** (\[Vertex\[]]\(/engine/6000.6/script-reference/unityengine/uielements/vertex)): The array of vertices to copy from. The length of the array must match the allocated vertex count.

### Remarks

When this method is called, it is not possible to use [MeshWriteData.SetNextVertex](/engine/6000.6/script-reference/unityengine/uielements/meshwritedata/setnextvertex.md) to fill the vertices.

## SetAllVertices(NativeSlice\<Vertex>)

Fills the values of the allocated vertices with values copied directly from an array. When this method is called, it is not possible to use [MeshWriteData.SetNextVertex](/engine/6000.6/script-reference/unityengine/uielements/meshwritedata/setnextvertex.md) to fill the allocated vertices array.

```csharp
public void SetAllVertices(NativeSlice<Vertex> vertices)
```

### Parameters

**** (\[NativeSlice\<Vertex>]\(/engine/6000.6/script-reference/unity/collections/nativeslice1)): The array of vertices to copy from. The length of the array must match the allocated vertex count.

### Remarks

When this method is called, it is not possible to use [MeshWriteData.SetNextVertex](/engine/6000.6/script-reference/unityengine/uielements/meshwritedata/setnextvertex.md) to fill the vertices.
