mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00

* MATCH, IFS, MAXA, MINA * OFFSET fixed * ISBLANK, ISERR, ISERROR, ISEVEN ,ISFORMULA, ISNONTEXT, ISNUMBER, ISODD, ISTEXT * ISLEAPYEAR, ISLOGICAL, ISNA, ISREF * FIND, FINDB * SEARCH, SEARCHB * CONCAT, CONCATENATE * YEAR, YEARFRAC * CONCAT is fixed, now TRUE and FALSE are concatenated instead of 1 and 0 in case of boolean results * NOW, TODAY, TIME, TIMEVALUE * DATE * DATEDIF
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
// Copyright 2017 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by the terms of the Affero GNU General
|
|
// Public License version 3.0 as published by the Free Software Foundation and
|
|
// appearing in the file LICENSE included in the packaging of this file. A
|
|
// commercial license can be purchased on https://unidoc.io.
|
|
|
|
package spreadsheet
|
|
|
|
import (
|
|
"github.com/unidoc/unioffice/color"
|
|
|
|
"github.com/unidoc/unioffice/schema/soo/sml"
|
|
)
|
|
|
|
type PatternFill struct {
|
|
x *sml.CT_PatternFill
|
|
f *sml.CT_Fill
|
|
}
|
|
|
|
func NewPatternFill(fills *sml.CT_Fills) PatternFill {
|
|
x := sml.NewCT_Fill()
|
|
x.PatternFill = sml.NewCT_PatternFill()
|
|
return PatternFill{x.PatternFill, x}
|
|
}
|
|
|
|
func (f PatternFill) X() *sml.CT_PatternFill {
|
|
return f.x
|
|
}
|
|
|
|
// SetPattern sets the pattern of the fill.
|
|
func (f PatternFill) SetPattern(p sml.ST_PatternType) {
|
|
f.x.PatternTypeAttr = p
|
|
}
|
|
|
|
func (f PatternFill) ClearBgColor() {
|
|
f.x.BgColor = nil
|
|
}
|
|
func (f PatternFill) SetBgColor(c color.Color) {
|
|
f.x.BgColor = sml.NewCT_Color()
|
|
f.x.BgColor.RgbAttr = c.AsRGBAString()
|
|
}
|
|
func (f PatternFill) ClearFgColor() {
|
|
f.x.FgColor = nil
|
|
}
|
|
|
|
// SetFgColor sets the *fill* foreground color. As an example, the solid pattern foreground color becomes the
|
|
// background color of the cell when applied.
|
|
func (f PatternFill) SetFgColor(c color.Color) {
|
|
f.x.FgColor = sml.NewCT_Color()
|
|
f.x.FgColor.RgbAttr = c.AsRGBAString()
|
|
}
|