Versions in this module Expand all Collapse all v1 v1.0.0 Mar 12, 2021 Changes in this version + const VariantTypeVTLPSTR + const VariantTypeVariant + func CellNameToCoordinates(cellName string) (int, int) + func ColumnName(columnNumber int) (columnName string) + func ColumnNumber(columnName string) (columnNumber int) + func CoordinatesToCellName(col, row int) string + func DeepCopy(dst, src interface{}) error + func TimeToExcelTime(t time.Time) float64 + type Cell struct + func (c *Cell) Col() int + func (c *Cell) GetIntValue() int + func (c *Cell) GetStringValue() string + func (c *Cell) Row() int + func (c *Cell) SetBoolValue(value bool) + func (c *Cell) SetDefaultValue(value string) + func (c *Cell) SetDurationValue(value time.Duration) + func (c *Cell) SetFloatValue(value float64) + func (c *Cell) SetFloatValuePrec(value float64, prec int, bitSize int) + func (c *Cell) SetIntValue(value int) + func (c *Cell) SetStringValue(value string) + func (c *Cell) SetTimeValue(value time.Time) + func (c *Cell) SetValue(value interface{}) + type File struct + func NewFile() *File + func OpenFile(name string) (*File, error) + func (f *File) NewSheet(name string) *Sheet + func (f *File) OpenSheet(name string) *Sheet + func (f *File) SaveFile(name string) error + func (f *File) Write(w io.Writer) error + type Sheet struct + func (s *Sheet) Cell(col, row int) *Cell + func (s *Sheet) GetCellInt(col, row int) int + func (s *Sheet) GetCellString(col, row int) string + func (s *Sheet) SetCellValue(col, row int, value interface{}) + type StyleSheet struct + type Vector struct + func (v *Vector) AppendString(str string) + func (v *Vector) GetIntPairs() (pairs map[string]int) + func (v *Vector) GetStringArray() []string + func (v *Vector) SetIntPairs(pairs map[string]int) + func (v *Vector) SetStringArray(strArray []string)