Cells

Overview

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

Cells is a collection of Cell values indexed by A1-style string references (e.g.

This type provides 4 methods for working with Cells objects in Go programs. Available methods include: All, Get, Remove, Set. All public members are accessible to any Go application after installing the Aspose.Cells FOSS for Go package.

Methods

SignatureDescription
Get(ref: string)(*Cell, error)Get returns the Cell at the given A1 reference.
Set(ref: string, value: interface{})errorSet stores a value at the given A1 reference.
Remove(ref: string)errorRemove deletes the cell at the given A1 reference.
All()map[string]*CellAll returns the underlying map of all cells keyed by A1 reference.

See Also