Sha256: 94d217e2090caf77093126f8c950c75b6bea0ee3a7631bc8c001a06d18f78b3f
Contents?: true
Size: 1.26 KB
Versions: 21
Compression:
Stored size: 1.26 KB
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- ####################################################################### # # A simple example of how to use the WriteXLSX gem to # modify shapes properties in an Excel xlsx file. # # reverse('c'), May 2012, John McNamara, jmcnamara@cpan.org # converted to Ruby by Hideo NAKAMURA, cxn03651@msj.biglobe.ne.jp # require 'write_xlsx' workbook = WriteXLSX.new('shape2.xlsx') worksheet = workbook.add_worksheet worksheet.hide_gridlines(2) plain = workbook.add_shape( :type => 'smileyFace', :text => "Plain", :width => 100, :height => 100 ) bbformat = workbook.add_format( :color => 'red', :font => 'Lucida Calligraphy' ) bbformat.set_bold bbformat.set_underline bbformat.set_italic decor = workbook.add_shape( :type => 'smileyFace', :text => 'Decorated', :rotation => 45, :width => 200, :height => 100, :format => bbformat, :line_type => 'sysDot', :line_weight => 3, :fill => 'FFFF00', :line => '3366FF' ) worksheet.insert_shape('A1', plain, 50, 50) worksheet.insert_shape('A1', decor, 250, 50) workbook.close
Version data entries
21 entries across 21 versions & 1 rubygems