class XlsxParser::Sheet

Overview

Represents a sheet in an Excel workbook.

The Sheet class provides methods to read and manipulate data in a sheet.

Defined in:

xlsx-parser/sheet.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(book : Book, file : String, name : String) #

Initializes a new instance of the Sheet class.


[View source]

Instance Method Detail

def name : String #

The name of the sheet.


[View source]
def node : XML::Reader #

The XML reader for the sheet.


[View source]
def rows #

Returns an iterator that yields a hash per row, including the cell ids and values.


[View source]