Adds a worksheet to this workbook
Parameters:
a customizable set of options
Options Hash (options):
The name of the worksheet.
Yields:
Returns:
See Also:
115 116 117 118 119
# File 'lib/axlsx/workbook/workbook.rb', line 115 def add_worksheet(options={}) worksheet = Worksheet.new(self, options) yield worksheet if block_given? worksheet end