Sha256: e0e440954a6b509eb065819bb4f731948dfc624bf0d1b3ecd289f03b4eb4d343

Contents?: true

Size: 1.24 KB

Versions: 38

Compression:

Stored size: 1.24 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 'rubygems'
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

38 entries across 38 versions & 1 rubygems

Version Path
write_xlsx-0.81.0 examples/rich_strings.rb
write_xlsx-0.80.0 examples/rich_strings.rb
write_xlsx-0.79.0 examples/rich_strings.rb
write_xlsx-0.78.0 examples/rich_strings.rb
write_xlsx-0.77.2 examples/rich_strings.rb
write_xlsx-0.77.1 examples/rich_strings.rb
write_xlsx-0.77.0 examples/rich_strings.rb
write_xlsx-0.76.3 examples/rich_strings.rb
write_xlsx-0.76.2 examples/rich_strings.rb
write_xlsx-0.76.1 examples/rich_strings.rb
write_xlsx-0.76.0 examples/rich_strings.rb
write_xlsx-0.75.0 examples/rich_strings.rb
write_xlsx-0.74.0 examples/rich_strings.rb
write_xlsx-0.73.0 examples/rich_strings.rb
write_xlsx-0.72.3.beta1 examples/rich_strings.rb
write_xlsx-0.72.2 examples/rich_strings.rb
write_xlsx-0.72.1 examples/rich_strings.rb
write_xlsx-0.72.0 examples/rich_strings.rb
write_xlsx-0.71.0 examples/rich_strings.rb
write_xlsx-0.70.0 examples/rich_strings.rb