MadelineProtoDocs/old_docs/API_docs_v66/constructors/textUnderline.md

39 lines
626 B
Markdown

---
title: textUnderline
description: Underlined text
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: textUnderline
[Back to constructors index](index.md)
Underlined text
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[RichText](../types/RichText.md) | Yes|Text|
### Type: [RichText](../types/RichText.md)
### Example:
```php
$textUnderline = ['_' => 'textUnderline', 'text' => RichText];
```
Or, if you're into Lua:
```lua
textUnderline={_='textUnderline', text=RichText}
```