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
| Signature | Description |
|---|---|
Get(ref: string) → (*Cell, error) | Get returns the Cell at the given A1 reference. |
Set(ref: string, value: interface{}) → error | Set stores a value at the given A1 reference. |
Remove(ref: string) → error | Remove deletes the cell at the given A1 reference. |
All() → map[string]*Cell | All returns the underlying map of all cells keyed by A1 reference. |