# ScreenContent
> Represents a content section in a scrollable screen. Each type has a byte discriminator for network serialization.
`gg.lode.lecternapi.api.ui.ScreenContent`
---
## Signature
```java
public sealed interface ScreenContent
```
---
## Variants
| Type | Description |
|---|---|
| `Heading` | Section heading text. Rendered bold with accent color. |
| `Paragraph` | Paragraph text. Rendered with word-wrapping. |
| `Bullet` | Bullet point text. Rendered with indent and bullet marker. |
| `Divider` | Horizontal divider line. |
| `Subtext` | Small/dim text, typically for footnotes or metadata. |
---
## Methods
### discriminator
```java
byte discriminator(ScreenContent content)
```
| Parameter | Type |
|---|---|
| `content` | `ScreenContent` |
---