Class: TD::Types::PageBlockTableCell
- Defined in:
- lib/tdlib/types/page_block_table_cell.rb
Overview
Represents a cell of a table.
Instance Attribute Summary collapse
-
#align ⇒ TD::Types::PageBlockHorizontalAlignment
Horizontal cell content alignment.
-
#colspan ⇒ Integer
The number of columns the cell should span.
-
#is_header ⇒ Boolean
True, if it is a header cell.
-
#rowspan ⇒ Integer
The number of rows the cell should span.
-
#text ⇒ TD::Types::RichText?
Cell text; may be null.
-
#valign ⇒ TD::Types::PageBlockVerticalAlignment
Vertical cell content alignment.
Method Summary
Methods inherited from Base
Instance Attribute Details
#align ⇒ TD::Types::PageBlockHorizontalAlignment
Horizontal cell content alignment.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def align @align end |
#colspan ⇒ Integer
The number of columns the cell should span.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def colspan @colspan end |
#is_header ⇒ Boolean
True, if it is a header cell.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def is_header @is_header end |
#rowspan ⇒ Integer
The number of rows the cell should span.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def rowspan @rowspan end |
#text ⇒ TD::Types::RichText?
Cell text; may be null. If the text is null, then the cell should be invisible.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def text @text end |
#valign ⇒ TD::Types::PageBlockVerticalAlignment
Vertical cell content alignment.
11 12 13 |
# File 'lib/tdlib/types/page_block_table_cell.rb', line 11 def valign @valign end |