1 Star 0 Fork 1

青大叔 / gooxml

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CT_PageBorders.go 4.86 KB
一键复制 编辑 原始数据 按行查看 历史
qwj 提交于 2021-09-03 14:09 . 修改包名
// Copyright 2017 Baliance. All rights reserved.
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
// 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 wml
import (
"encoding/xml"
"gitee.com/jiewen/gooxml"
)
type CT_PageBorders struct {
// Z-Ordering of Page Border
ZOrderAttr ST_PageBorderZOrder
// Pages to Display Page Borders
DisplayAttr ST_PageBorderDisplay
// Page Border Positioning
OffsetFromAttr ST_PageBorderOffset
// Top Border
Top *CT_TopPageBorder
// Left Border
Left *CT_PageBorder
// Bottom Border
Bottom *CT_BottomPageBorder
// Right Border
Right *CT_PageBorder
}
func NewCT_PageBorders() *CT_PageBorders {
ret := &CT_PageBorders{}
return ret
}
func (m *CT_PageBorders) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.ZOrderAttr != ST_PageBorderZOrderUnset {
attr, err := m.ZOrderAttr.MarshalXMLAttr(xml.Name{Local: "w:zOrder"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
if m.DisplayAttr != ST_PageBorderDisplayUnset {
attr, err := m.DisplayAttr.MarshalXMLAttr(xml.Name{Local: "w:display"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
if m.OffsetFromAttr != ST_PageBorderOffsetUnset {
attr, err := m.OffsetFromAttr.MarshalXMLAttr(xml.Name{Local: "w:offsetFrom"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
e.EncodeToken(start)
if m.Top != nil {
setop := xml.StartElement{Name: xml.Name{Local: "w:top"}}
e.EncodeElement(m.Top, setop)
}
if m.Left != nil {
seleft := xml.StartElement{Name: xml.Name{Local: "w:left"}}
e.EncodeElement(m.Left, seleft)
}
if m.Bottom != nil {
sebottom := xml.StartElement{Name: xml.Name{Local: "w:bottom"}}
e.EncodeElement(m.Bottom, sebottom)
}
if m.Right != nil {
seright := xml.StartElement{Name: xml.Name{Local: "w:right"}}
e.EncodeElement(m.Right, seright)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_PageBorders) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "zOrder" {
m.ZOrderAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "display" {
m.DisplayAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "offsetFrom" {
m.OffsetFromAttr.UnmarshalXMLAttr(attr)
continue
}
}
lCT_PageBorders:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name {
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "top"}:
m.Top = NewCT_TopPageBorder()
if err := d.DecodeElement(m.Top, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "left"}:
m.Left = NewCT_PageBorder()
if err := d.DecodeElement(m.Left, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "bottom"}:
m.Bottom = NewCT_BottomPageBorder()
if err := d.DecodeElement(m.Bottom, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "right"}:
m.Right = NewCT_PageBorder()
if err := d.DecodeElement(m.Right, &el); err != nil {
return err
}
default:
gooxml.Log("skipping unsupported element on CT_PageBorders %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_PageBorders
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_PageBorders and its children
func (m *CT_PageBorders) Validate() error {
return m.ValidateWithPath("CT_PageBorders")
}
// ValidateWithPath validates the CT_PageBorders and its children, prefixing error messages with path
func (m *CT_PageBorders) ValidateWithPath(path string) error {
if err := m.ZOrderAttr.ValidateWithPath(path + "/ZOrderAttr"); err != nil {
return err
}
if err := m.DisplayAttr.ValidateWithPath(path + "/DisplayAttr"); err != nil {
return err
}
if err := m.OffsetFromAttr.ValidateWithPath(path + "/OffsetFromAttr"); err != nil {
return err
}
if m.Top != nil {
if err := m.Top.ValidateWithPath(path + "/Top"); err != nil {
return err
}
}
if m.Left != nil {
if err := m.Left.ValidateWithPath(path + "/Left"); err != nil {
return err
}
}
if m.Bottom != nil {
if err := m.Bottom.ValidateWithPath(path + "/Bottom"); err != nil {
return err
}
}
if m.Right != nil {
if err := m.Right.ValidateWithPath(path + "/Right"); err != nil {
return err
}
}
return nil
}
1
https://gitee.com/jiewen/gooxml.git
git@gitee.com:jiewen/gooxml.git
jiewen
gooxml
gooxml
c517a803bade

搜索帮助