mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
71 lines
2.5 KiB
Go
71 lines
2.5 KiB
Go
// Copyright 2017 Baliance. 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 by contacting sales@baliance.com.
|
|
|
|
package document
|
|
|
|
import (
|
|
"baliance.com/gooxml/color"
|
|
"baliance.com/gooxml/measurement"
|
|
"baliance.com/gooxml/schema/soo/wml"
|
|
)
|
|
|
|
// CellBorders are the borders for an individual
|
|
type CellBorders struct {
|
|
x *wml.CT_TcBorders
|
|
}
|
|
|
|
// X returns the inner wrapped type
|
|
func (b CellBorders) X() *wml.CT_TcBorders {
|
|
return b.x
|
|
}
|
|
|
|
// SetAll sets all of the borders to a given value.
|
|
func (b CellBorders) SetAll(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.SetBottom(t, c, thickness)
|
|
b.SetLeft(t, c, thickness)
|
|
b.SetRight(t, c, thickness)
|
|
b.SetTop(t, c, thickness)
|
|
b.SetInsideHorizontal(t, c, thickness)
|
|
b.SetInsideVertical(t, c, thickness)
|
|
}
|
|
|
|
// SetBottom sets the bottom border to a specified type, color and thickness.
|
|
func (b CellBorders) SetBottom(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.Bottom = wml.NewCT_Border()
|
|
setBorder(b.x.Bottom, t, c, thickness)
|
|
}
|
|
|
|
// SetTop sets the top border to a specified type, color and thickness.
|
|
func (b CellBorders) SetTop(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.Top = wml.NewCT_Border()
|
|
setBorder(b.x.Top, t, c, thickness)
|
|
}
|
|
|
|
// SetLeft sets the left border to a specified type, color and thickness.
|
|
func (b CellBorders) SetLeft(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.Left = wml.NewCT_Border()
|
|
setBorder(b.x.Left, t, c, thickness)
|
|
}
|
|
|
|
// SetRight sets the right border to a specified type, color and thickness.
|
|
func (b CellBorders) SetRight(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.Right = wml.NewCT_Border()
|
|
setBorder(b.x.Right, t, c, thickness)
|
|
}
|
|
|
|
// SetInsideHorizontal sets the interior horizontal borders to a specified type, color and thickness.
|
|
func (b CellBorders) SetInsideHorizontal(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.InsideH = wml.NewCT_Border()
|
|
setBorder(b.x.InsideH, t, c, thickness)
|
|
}
|
|
|
|
// SetInsideVertical sets the interior vertical borders to a specified type, color and thickness.
|
|
func (b CellBorders) SetInsideVertical(t wml.ST_Border, c color.Color, thickness measurement.Distance) {
|
|
b.x.InsideV = wml.NewCT_Border()
|
|
setBorder(b.x.InsideV, t, c, thickness)
|
|
}
|