StreamingReader

StreamingReader

Overview

StreamingReader is a type in Aspose.Cells FOSS for Go.

StreamingReader reads an .xlsx workbook row by row without loading the entire sheet XML into memory.

This type provides 1 method for working with StreamingReader objects in Go programs. Available methods include: ProcessRows. All public members are accessible to any Go application after installing the Aspose.Cells FOSS for Go package.

Methods

SignatureDescription
ProcessRows(sheetName: string, callback: RowCallback)errorProcessRows opens the workbook, resolves the named sheet to its XML part, loads the shared-strings table (if present), and then streams through the sheet data one row at a time, calling callback for each row.

See Also