Sha256: 2e0f593a635d34185da03552a7240e333de8d81ad784014d646bf875d0a8dcd5
Contents?: true
Size: 906 Bytes
Versions: 21
Compression:
Stored size: 906 Bytes
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- ####################################################################### # # A simple example of how to use the WriteXLSX gem to # add shapes to 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('shape1.xlsx') worksheet = workbook.add_worksheet # Add a circle, with centered text. ellipse = workbook.add_shape( :type => 'ellipse', :text => "Hello\nWorld", :width => 60, :height => 60 ) worksheet.insert_shape('A1', ellipse, 50, 50) # Add a plus sign. plus = workbook.add_shape( :type => 'plus', :width => 20, :height => 20 ) worksheet.insert_shape('D8', plus) workbook.close
Version data entries
21 entries across 21 versions & 1 rubygems