Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RowIterator ¶
type RowIterator struct {
// contains filtered or unexported fields
}
RowIterator for iterating through rows.
func (*RowIterator) Cell ¶
func (ri *RowIterator) Cell(column string) string
Cell return value as string, return empty string if column not found.
func (*RowIterator) Cells ¶
func (ri *RowIterator) Cells() []Cell
Cells returns only all cell that have values
func (*RowIterator) Err ¶
func (ri *RowIterator) Err() error
func (*RowIterator) Next ¶
func (ri *RowIterator) Next() bool
Next returns whether row has next iteration.
type XlsxLite ¶
type XlsxLite struct {
// contains filtered or unexported fields
}
XlsxLite is a wrapper for any implementation used to process the xlsx file format, designed to be as minimal as possible. In case the underlying library or implementation changes, modifications will only be necessary within this package.
func (*XlsxLite) RowIterator ¶
func (x *XlsxLite) RowIterator(sheet string) *RowIterator
RowIterator returns row's iterator.
Click to show internal directories.
Click to hide internal directories.