Class: TD::Types::PageBlock::Table
- Inherits:
-
TD::Types::PageBlock
- Object
- Dry::Struct
- Base
- TD::Types::PageBlock
- TD::Types::PageBlock::Table
- Defined in:
- lib/tdlib/types/page_block/table.rb
Overview
A table.
Instance Attribute Summary collapse
-
#caption ⇒ TD::Types::RichText
Table caption.
-
#cells ⇒ Array<Array<TD::Types::PageBlockTableCell>>
Table cells.
-
#is_bordered ⇒ Boolean
True, if the table is bordered.
-
#is_striped ⇒ Boolean
True, if the table is striped.
Method Summary
Methods inherited from Base
Instance Attribute Details
#caption ⇒ TD::Types::RichText
Table caption.
8 9 10 |
# File 'lib/tdlib/types/page_block/table.rb', line 8 def @caption end |
#cells ⇒ Array<Array<TD::Types::PageBlockTableCell>>
Table cells.
8 9 10 |
# File 'lib/tdlib/types/page_block/table.rb', line 8 def cells @cells end |
#is_bordered ⇒ Boolean
True, if the table is bordered.
8 9 10 |
# File 'lib/tdlib/types/page_block/table.rb', line 8 def is_bordered @is_bordered end |
#is_striped ⇒ Boolean
True, if the table is striped.
8 9 10 |
# File 'lib/tdlib/types/page_block/table.rb', line 8 def is_striped @is_striped end |