Sha256: c18860731e91fb9e74f7bdf347127e9b6636802d63c93ffa455bcb63599ccfe7

Contents?: true

Size: 754 Bytes

Versions: 5

Compression:

Stored size: 754 Bytes

Contents

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

###############################################################################
#
# This example demonstrates writing cell comments.
#
# A cell comment is indicated in Excel by a small red triangle in the upper
# right-hand corner of the cell.
#
# For more advanced comment options see comments2.pl.
#
# reverse('©'), November 2005, John McNamara, jmcnamara@cpan.org
#
# original written in Perl by John McNamara
# converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
#

require 'writeexcel'

workbook  = WriteExcel.new("comments1.xls")
worksheet = workbook.add_worksheet

worksheet.write('A1', 'Hello')
worksheet.write_comment('A1', 'This is a comment')

workbook.close

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
writeexcel-0.5.0 examples/comments1.rb
writeexcel-0.4.3 examples/comments1.rb
writeexcel-0.4.2 examples/comments1.rb
writeexcel-0.4.1 examples/comments1.rb
writeexcel-0.4.0 examples/comments1.rb