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

Version Path
write_xlsx-1.00.0 examples/rich_strings.rb
write_xlsx-0.99.0 examples/rich_strings.rb
write_xlsx-0.97.0 examples/rich_strings.rb
write_xlsx-0.90.0 examples/rich_strings.rb
write_xlsx-0.89.0 examples/rich_strings.rb
write_xlsx-0.88.0 examples/rich_strings.rb
write_xlsx-0.87.0 examples/rich_strings.rb
write_xlsx-0.86.0 examples/rich_strings.rb
write_xlsx-0.85.11 examples/rich_strings.rb
write_xlsx-0.85.10 examples/rich_strings.rb
write_xlsx-0.85.9 examples/rich_strings.rb
write_xlsx-0.85.8 examples/rich_strings.rb
write_xlsx-0.85.7 examples/rich_strings.rb
write_xlsx-0.85.6 examples/rich_strings.rb
write_xlsx-0.85.5 examples/rich_strings.rb
write_xlsx-0.85.4 examples/rich_strings.rb
write_xlsx-0.85.3 examples/rich_strings.rb
write_xlsx-0.85.2 examples/rich_strings.rb
write_xlsx-0.85.1 examples/rich_strings.rb
write_xlsx-0.83.0 examples/rich_strings.rb