1 Star 2 Fork 1

wx-fork / unioffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
Todd 提交于 2017-09-23 08:28 . schema: rename wordprocessingml to wml
// Copyright 2017 Baliance. All rights reserved.
package main
import (
"baliance.com/gooxml/document"
"baliance.com/gooxml/measurement"
"baliance.com/gooxml/schema/soo/wml"
)
var lorem = `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin lobortis, lectus dictum feugiat tempus, sem neque finibus enim, sed eleifend sem nunc ac diam. Vestibulum tempus sagittis elementum`
func main() {
doc := document.New()
// Headers/footers apply to the preceding paragraphs in the document. There
// is a section properties on the document body itself acessible via
// BodySection(). To have multiple different headers (aside from the
// supported even/odd/first), we need to add multiple sections.
// First add some content
for i := 0; i < 5; i++ {
para := doc.AddParagraph()
run := para.AddRun()
run.AddText(lorem)
}
// Construct our header
hdr := doc.AddHeader()
para := hdr.AddParagraph()
para.Properties().AddTabStop(2.5*measurement.Inch, wml.ST_TabJcCenter, wml.ST_TabTlcNone)
run := para.AddRun()
run.AddTab()
run.AddText("My Document Title")
// Create a new section and apply the header
para = doc.AddParagraph()
section := para.Properties().AddSection(wml.ST_SectionMarkNextPage)
section.SetHeader(hdr, wml.ST_HdrFtrDefault)
// Add some more content
for i := 0; i < 5; i++ {
para := doc.AddParagraph()
run := para.AddRun()
run.AddText(lorem)
}
hdr = doc.AddHeader()
para = hdr.AddParagraph()
para.Properties().AddTabStop(2.5*measurement.Inch, wml.ST_TabJcCenter, wml.ST_TabTlcNone)
run = para.AddRun()
run.AddTab()
run.AddText("Different Title")
doc.BodySection().SetHeader(hdr, wml.ST_HdrFtrDefault)
doc.SaveToFile("header-footer-multiple.docx")
}
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.7.1

搜索帮助