---
title: "TooltipAnchorPosition"
description: ""
type: "class"
---

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


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

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


```kotlin
value class TooltipAnchorPosition private constructor(private val value: Int)
```

## Companion Object

#### Properties

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


```kotlin
val Above = TooltipAnchorPosition(1)
```


Places the tooltip above the anchor



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


```kotlin
val Below = TooltipAnchorPosition(2)
```


Places the tooltip below the anchor



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


```kotlin
val Left = TooltipAnchorPosition(3)
```


Places the tooltip on the left of the anchor



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


```kotlin
val Right = TooltipAnchorPosition(4)
```


Places the tooltip on the right of the anchor



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


```kotlin
val Start = TooltipAnchorPosition(5)
```


Places the tooltip at the start of the anchor



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


```kotlin
val End = TooltipAnchorPosition(6)
```


Places the tooltip at the end of the anchor





