Sha256: 3ce4f8214033dd705697506e75b1174d8bb48937038cc58edeeabff1e4dbaca1
Contents?: true
Size: 727 Bytes
Versions: 38
Compression:
Stored size: 727 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
38 entries across 38 versions & 3 rubygems