Sha256: 05e45f105958a5ca321637ad6264d507a1ed4cff9382d6c6180134b6644b92e2
Contents?: true
Size: 1.22 KB
Versions: 21
Compression:
Stored size: 1.22 KB
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- ####################################################################### # # An Excel::Writer::XLSX example showing how to use "rich strings", i.e., # strings with multiple formatting. # # reverse(c), February 2011, John McNamara, jmcnamara@cpan.org # convert to ruby by Hideo NAKAMURA, cxn03651@msj.biglobe.ne.jp # require 'write_xlsx' workbook = WriteXLSX.new('rich_strings.xlsx') worksheet = workbook.add_worksheet worksheet.set_column('A:A', 30) # Set some formats to use. bold = workbook.add_format(:bold => 1) italic = workbook.add_format(:italic => 1) red = workbook.add_format(:color => 'red') blue = workbook.add_format(:color => 'blue') center = workbook.add_format(:align => 'center') superc = workbook.add_format(:font_script => 1) # Write some strings with multiple formats. worksheet.write_rich_string('A1', 'This is ', bold, 'bold', ' and this is ', italic, 'italic') worksheet.write_rich_string('A3', 'This is ', red, 'red', ' and this is ', blue, 'blue') worksheet.write_rich_string('A5', 'Some ', bold, 'bold text', ' centered', center) worksheet.write_rich_string('A7', italic, 'j = k', superc, '(n-1)', center) workbook.close
Version data entries
21 entries across 21 versions & 1 rubygems