mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +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
63 lines
1.3 KiB
Go
63 lines
1.3 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"
|
|
)
|
|
|
|
// Font allows editing fonts within a spreadsheet stylesheet.
|
|
type Font struct {
|
|
font *sml.CT_Font
|
|
styles *sml.StyleSheet
|
|
}
|
|
|
|
// X returns the inner wrapped XML type.
|
|
func (f Font) X() *sml.CT_Font {
|
|
return f.font
|
|
}
|
|
|
|
func (f Font) Index() uint32 {
|
|
for i, sf := range f.styles.Fonts.Font {
|
|
if f.font == sf {
|
|
return uint32(i)
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (f Font) SetBold(b bool) {
|
|
if b {
|
|
f.font.B = []*sml.CT_BooleanProperty{{}}
|
|
} else {
|
|
f.font.B = nil
|
|
}
|
|
}
|
|
func (f Font) SetItalic(b bool) {
|
|
if b {
|
|
f.font.I = []*sml.CT_BooleanProperty{{}}
|
|
} else {
|
|
f.font.I = nil
|
|
}
|
|
}
|
|
|
|
func (f Font) SetName(name string) {
|
|
f.font.Name = []*sml.CT_FontName{{ValAttr: name}}
|
|
}
|
|
|
|
func (f Font) SetSize(size float64) {
|
|
f.font.Sz = []*sml.CT_FontSize{{ValAttr: size}}
|
|
}
|
|
|
|
func (f Font) SetColor(c color.Color) {
|
|
clr := sml.NewCT_Color()
|
|
clr.RgbAttr = c.AsRGBString()
|
|
f.font.Color = []*sml.CT_Color{clr}
|
|
}
|