# Sandbox.Utility.Easing.TryGetFunction

```csharp
static bool TryGetFunction(string name, out Function function)
```

Get an easing function by name (ie, "ease-in", "cubic-bezier(0.1, 0.7, 1, 0.1)" or "steps(4, end)").
If the function exists we return true, otherwise return false.

### Parameters

- `name` (`string`)
- `out function` (`Function`)

### Returns

`bool`

Declared in [Sandbox.Utility.Easing](/api/Sandbox.Utility.Easing).
Assembly: `Sandbox.System`.
