Sha256: f9b31841c3c8fdc93cb0c396332e16fb7e5547e3c9cfafe356ee26a8be0d57d2

Contents?: true

Size: 739 Bytes

Versions: 2

Compression:

Stored size: 739 Bytes

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

#######################################################################
#
# A simple example of how to use the WriteXLSX gem to
# scale shapes in an Excel xlsx file.
#
# reverse('c'), May 2012, John McNamara, jmcnamara@cpan.org
# converted to Ruby by Hideo NAKAMURA, nakamura.hideo@gmail.com
#

require 'write_xlsx'

workbook  = WriteXLSX.new('shape3.xlsx')
worksheet = workbook.add_worksheet

normal = workbook.add_shape(
  :name   => 'chip',
  :type   => 'diamond',
  :text   => 'Normal',
  :width  => 100,
  :height => 100
)

worksheet.insert_shape('A1', normal, 50, 50)
normal.text = 'Scaled 3w x 2h'
normal.name = 'Hope'
worksheet.insert_shape('A1', normal, 250, 50, 3, 2)

workbook.close

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
write_xlsx-1.10.0 examples/shape3.rb
write_xlsx-1.09.5 examples/shape3.rb