Sha256: 93cb61e207f81844ca414b428f084b2787362a68d36e53e9f4a8b327b45318e5
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
#!/usr/bin/ruby -W0 ############################################################################### # # Example of how to use the WriteExcel module to write hyperlinks # # See also hyperlink2.pl for worksheet URL examples. # # reverse('©'), March 2001, John McNamara, jmcnamara@cpan.org # # original written in Perl by John McNamara # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp # require 'rubygems' require 'WriteExcel' # Create a new workbook and add a worksheet workbook = Spreadsheet::WriteExcel.new("hyperlink.xls") worksheet = workbook.add_worksheet('Hyperlinks') # Format the first column worksheet.set_column('A:A', 30) worksheet.set_selection('B1') # Add a sample format format = workbook.add_format format.set_size(12) format.set_bold format.set_color('red') format.set_underline # Write some hyperlinks worksheet.write('A1', 'http://www.perl.com/' ) worksheet.write('A3', 'http://www.perl.com/', 'Perl home' ) worksheet.write('A5', 'http://www.perl.com/', nil, format) worksheet.write('A7', 'mailto:jmcnamara@cpan.org', 'Mail me') # Write a URL that isn't a hyperlink worksheet.write_string('A9', 'http://www.perl.com/') workbook.close
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
WriteExcel-0.2.0 | examples/hyperlink.rb |