Method: Axlsx::Cell#is_text_run?

Defined in:
lib/axlsx/workbook/worksheet/cell.rb

#is_text_run?Boolean

Indicates that the cell has one or more of the custom cell styles applied.

Returns:

  • (Boolean)


135
136
137
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 135

def is_text_run?
  defined?(@is_text_run) && @is_text_run && !contains_rich_text?
end