Method: Aspose::Cloud::Cells::Workbook#initialize

Defined in:
lib/Cells/workbook.rb

#initialize(filename) ⇒ Workbook

Returns a new instance of Workbook.



22
23
24
25
26
# File 'lib/Cells/workbook.rb', line 22

def initialize(filename)
  @filename = filename
  raise 'filename not specified.' if filename.empty?
  @base_uri = "#{Aspose::Cloud::Common::Product.product_uri}/cells/#{@filename}"
end