1 Star 2 Fork 1

wx-fork / unioffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
paragraphproperties.go 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
// 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 drawing
import (
"baliance.com/gooxml"
"baliance.com/gooxml/schema/soo/dml"
)
// ParagraphProperties allows controlling paragraph properties.
type ParagraphProperties struct {
x *dml.CT_TextParagraphProperties
}
// MakeParagraphProperties constructs a new ParagraphProperties wrapper.
func MakeParagraphProperties(x *dml.CT_TextParagraphProperties) ParagraphProperties {
return ParagraphProperties{x}
}
// X returns the inner wrapped XML type.
func (p ParagraphProperties) X() *dml.CT_TextParagraphProperties {
return p.x
}
// SetBulletFont controls the font for the bullet character.
func (p ParagraphProperties) SetBulletFont(f string) {
if f == "" {
p.x.BuFont = nil
} else {
p.x.BuFont = dml.NewCT_TextFont()
p.x.BuFont.TypefaceAttr = f
}
}
// SetBulletChar sets the bullet character for the paragraph.
func (p ParagraphProperties) SetBulletChar(c string) {
if c == "" {
p.x.BuChar = nil
} else {
p.x.BuChar = dml.NewCT_TextCharBullet()
p.x.BuChar.CharAttr = c
}
}
// SetLevel sets the level of indentation of a paragraph.
func (p ParagraphProperties) SetLevel(idx int32) {
p.x.LvlAttr = gooxml.Int32(idx)
}
// SetNumbered controls if bullets are numbered or not.
func (p ParagraphProperties) SetNumbered(scheme dml.ST_TextAutonumberScheme) {
if scheme == dml.ST_TextAutonumberSchemeUnset {
p.x.BuAutoNum = nil
} else {
p.x.BuAutoNum = dml.NewCT_TextAutonumberBullet()
p.x.BuAutoNum.TypeAttr = scheme
}
}
// SetAlign controls the paragraph alignment
func (p ParagraphProperties) SetAlign(a dml.ST_TextAlignType) {
p.x.AlgnAttr = a
}
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.7.1

搜索帮助