---
title: "StartOffsetType"
description: "This class defines the two types of [StartOffset]: [StartOffsetType.Delay] and
[StartOffsetType.FastForward]. [StartOffsetType.Delay] delays the start of the animation, whereas
[StartOffsetType.FastForward] starts the animation right away from a given play time in the
animation."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
public value class StartOffsetType private constructor(internal val value: Int)
```


This class defines the two types of `StartOffset`: `StartOffsetType.Delay` and
`StartOffsetType.FastForward`. `StartOffsetType.Delay` delays the start of the animation, whereas
`StartOffsetType.FastForward` starts the animation right away from a given play time in the
animation.


## Companion Object

#### Properties

<div class='sourceset sourceset-common'>Common</div>


```kotlin
public val Delay: StartOffsetType
```


Delays the start of the animation.



<div class='sourceset sourceset-common'>Common</div>


```kotlin
public val FastForward: StartOffsetType
```


Fast forwards the animation to a given play time, and starts it immediately.





