Method: Worksheet#hyperlink_table_record
- Defined in:
- lib/surpass/worksheet.rb
#hyperlink_table_record ⇒ Object
525 526 527 528 529 530 531 532 533 534 535 |
# File 'lib/surpass/worksheet.rb', line 525 def hyperlink_table_record result = '' return result if @links.nil? @links.each do |a, b| x, y = a url, target, textmark, description = b result += HyperlinkRecord.new(x, x, y, y, url, target, textmark, description).to_biff result += QuicktipRecord(x, x, y, y).to_biff unless description.nil? end result end |