---
title: "TimePickerLayoutType"
description: "Represents the different configurations for the layout of the Time Picker"
type: "class"
---

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


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

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


```kotlin
value class TimePickerLayoutType internal constructor(internal val value: Int)
```


Represents the different configurations for the layout of the Time Picker


## Companion Object

#### Properties

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


```kotlin
val Horizontal = TimePickerLayoutType(0)
```


Displays the Time picker with a horizontal layout. Should be used in landscape mode.



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


```kotlin
val Vertical = TimePickerLayoutType(1)
```


Displays the Time picker with a vertical layout. Should be used in portrait mode.





