Class: AsciidoctorDiagramLayout::CellNode
- Inherits:
-
Struct
- Object
- Struct
- AsciidoctorDiagramLayout::CellNode
- Defined in:
- lib/asciidoctor_diagram_layout/parser.rb
Overview
A leaf node representing a named cell.
Instance Attribute Summary collapse
-
#name ⇒ String
Cell name, may contain AsciiDoc inline macros.
-
#size ⇒ Integer, :auto
Percentage of parent or
:autofor flex grow.
Instance Attribute Details
#name ⇒ String
Returns cell name, may contain AsciiDoc inline macros.
159 |
# File 'lib/asciidoctor_diagram_layout/parser.rb', line 159 CellNode = Struct.new(:size, :name) |
#size ⇒ Integer, :auto
Returns percentage of parent or :auto for flex grow.
159 |
# File 'lib/asciidoctor_diagram_layout/parser.rb', line 159 CellNode = Struct.new(:size, :name) |