2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: pageTableCell
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Table cell
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: pageTableCell
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Table cell
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|header|[Bool](../types/Bool.md) | Optional|Is this element part of the column header|
|
|
|
|
|align\_center|[Bool](../types/Bool.md) | Optional|Horizontally centered block|
|
|
|
|
|align\_right|[Bool](../types/Bool.md) | Optional|Right-aligned block|
|
|
|
|
|valign\_middle|[Bool](../types/Bool.md) | Optional|Vertically centered block|
|
|
|
|
|valign\_bottom|[Bool](../types/Bool.md) | Optional|Block vertically-alligned to the bottom|
|
|
|
|
|text|[RichText](../types/RichText.md) | Optional|Content|
|
|
|
|
|colspan|[int](../types/int.md) | Optional|For how many columns should this cell extend|
|
|
|
|
|rowspan|[int](../types/int.md) | Optional|For how many rows should this cell extend|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PageTableCell](../types/PageTableCell.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$pageTableCell = ['_' => 'pageTableCell', 'header' => Bool, 'align_center' => Bool, 'align_right' => Bool, 'valign_middle' => Bool, 'valign_bottom' => Bool, 'text' => RichText, 'colspan' => int, 'rowspan' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
pageTableCell={_='pageTableCell', header=Bool, align_center=Bool, align_right=Bool, valign_middle=Bool, valign_bottom=Bool, text=RichText, colspan=int, rowspan=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|