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
69 lines
2.5 KiB
Go
69 lines
2.5 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 document
|
|
|
|
import (
|
|
"github.com/unidoc/unioffice"
|
|
"github.com/unidoc/unioffice/measurement"
|
|
"github.com/unidoc/unioffice/schema/soo/wml"
|
|
)
|
|
|
|
// TableStyleProperties are table properties as defined in a style.
|
|
type TableStyleProperties struct {
|
|
x *wml.CT_TblPrBase
|
|
}
|
|
|
|
// X returns the inner wrapped XML type.
|
|
func (t TableStyleProperties) X() *wml.CT_TblPrBase {
|
|
return t.x
|
|
}
|
|
|
|
// SetRowBandSize sets the number of Rows in the row band
|
|
func (t TableStyleProperties) SetRowBandSize(rows int64) {
|
|
t.x.TblStyleRowBandSize = wml.NewCT_DecimalNumber()
|
|
t.x.TblStyleRowBandSize.ValAttr = rows
|
|
}
|
|
|
|
// SetColumnBandSize sets the number of Columns in the column band
|
|
func (t TableStyleProperties) SetColumnBandSize(cols int64) {
|
|
t.x.TblStyleColBandSize = wml.NewCT_DecimalNumber()
|
|
t.x.TblStyleColBandSize.ValAttr = cols
|
|
}
|
|
|
|
// SetTableIndent sets the Table Indent from the Leading Margin
|
|
func (t TableStyleProperties) SetTableIndent(ind measurement.Distance) {
|
|
t.x.TblInd = wml.NewCT_TblWidth()
|
|
t.x.TblInd.TypeAttr = wml.ST_TblWidthDxa
|
|
t.x.TblInd.WAttr = &wml.ST_MeasurementOrPercent{}
|
|
t.x.TblInd.WAttr.ST_DecimalNumberOrPercent = &wml.ST_DecimalNumberOrPercent{}
|
|
t.x.TblInd.WAttr.ST_DecimalNumberOrPercent.ST_UnqualifiedPercentage = unioffice.Int64(int64(ind / measurement.Dxa))
|
|
}
|
|
|
|
// SetCellSpacingAuto sets the cell spacing within a table to automatic.
|
|
func (t TableStyleProperties) SetCellSpacingAuto() {
|
|
t.x.TblCellSpacing = wml.NewCT_TblWidth()
|
|
t.x.TblCellSpacing.TypeAttr = wml.ST_TblWidthAuto
|
|
}
|
|
|
|
// SetCellSpacingPercent sets the cell spacing within a table to a percent width.
|
|
func (t TableStyleProperties) SetCellSpacingPercent(pct float64) {
|
|
t.x.TblCellSpacing = wml.NewCT_TblWidth()
|
|
t.x.TblCellSpacing.TypeAttr = wml.ST_TblWidthPct
|
|
t.x.TblCellSpacing.WAttr = &wml.ST_MeasurementOrPercent{}
|
|
t.x.TblCellSpacing.WAttr.ST_DecimalNumberOrPercent = &wml.ST_DecimalNumberOrPercent{}
|
|
t.x.TblCellSpacing.WAttr.ST_DecimalNumberOrPercent.ST_UnqualifiedPercentage = unioffice.Int64(int64(pct * 50))
|
|
}
|
|
|
|
// Borders allows manipulation of the table borders.
|
|
func (t TableStyleProperties) Borders() TableBorders {
|
|
if t.x.TblBorders == nil {
|
|
t.x.TblBorders = wml.NewCT_TblBorders()
|
|
}
|
|
return TableBorders{t.x.TblBorders}
|
|
}
|