unioffice/schema/soo/sml/CT_RevisionFormatting.go

185 lines
4.9 KiB
Go
Raw Normal View History

// Copyright 2017 FoxyUtils ehf. All rights reserved.
2017-08-28 20:56:18 -05:00
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
2017-08-28 20:56:18 -05:00
// 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
2019-08-02 13:49:16 +03:00
// commercial license can be purchased via https://unidoc.io website.
2017-08-28 20:56:18 -05:00
2017-09-23 08:23:34 -05:00
package sml
2017-08-28 20:56:18 -05:00
import (
"encoding/xml"
"fmt"
"strconv"
"github.com/unidoc/unioffice"
2017-08-28 20:56:18 -05:00
)
type CT_RevisionFormatting struct {
// Sheet Id
SheetIdAttr uint32
// Row or Column Formatting Change
XfDxfAttr *bool
// Style
SAttr *bool
// Sequence Of References
SqrefAttr ST_Sqref
// Start index
StartAttr *uint32
// Length
LengthAttr *uint32
// Formatting
Dxf *CT_Dxf
ExtLst *CT_ExtensionList
}
func NewCT_RevisionFormatting() *CT_RevisionFormatting {
ret := &CT_RevisionFormatting{}
return ret
}
2017-08-28 20:56:18 -05:00
func (m *CT_RevisionFormatting) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "sheetId"},
Value: fmt.Sprintf("%v", m.SheetIdAttr)})
if m.XfDxfAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xfDxf"},
Value: fmt.Sprintf("%d", b2i(*m.XfDxfAttr))})
2017-08-28 20:56:18 -05:00
}
if m.SAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "s"},
Value: fmt.Sprintf("%d", b2i(*m.SAttr))})
2017-08-28 20:56:18 -05:00
}
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "sqref"},
Value: fmt.Sprintf("%v", m.SqrefAttr)})
if m.StartAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "start"},
Value: fmt.Sprintf("%v", *m.StartAttr)})
}
if m.LengthAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "length"},
Value: fmt.Sprintf("%v", *m.LengthAttr)})
}
e.EncodeToken(start)
if m.Dxf != nil {
sedxf := xml.StartElement{Name: xml.Name{Local: "ma:dxf"}}
2017-08-28 20:56:18 -05:00
e.EncodeElement(m.Dxf, sedxf)
}
if m.ExtLst != nil {
seextLst := xml.StartElement{Name: xml.Name{Local: "ma:extLst"}}
2017-08-28 20:56:18 -05:00
e.EncodeElement(m.ExtLst, seextLst)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
2017-08-28 20:56:18 -05:00
func (m *CT_RevisionFormatting) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "sheetId" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
m.SheetIdAttr = uint32(parsed)
continue
2017-08-28 20:56:18 -05:00
}
if attr.Name.Local == "xfDxf" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.XfDxfAttr = &parsed
continue
2017-08-28 20:56:18 -05:00
}
if attr.Name.Local == "s" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.SAttr = &parsed
continue
2017-08-28 20:56:18 -05:00
}
if attr.Name.Local == "sqref" {
parsed, err := ParseSliceST_Sqref(attr.Value)
if err != nil {
return err
}
m.SqrefAttr = parsed
continue
2017-08-28 20:56:18 -05:00
}
if attr.Name.Local == "start" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.StartAttr = &pt
continue
2017-08-28 20:56:18 -05:00
}
if attr.Name.Local == "length" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.LengthAttr = &pt
continue
2017-08-28 20:56:18 -05:00
}
}
lCT_RevisionFormatting:
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/spreadsheetml/2006/main", Local: "dxf"},
xml.Name{Space: "http://purl.oclc.org/ooxml/spreadsheetml/main", Local: "dxf"}:
2017-08-28 20:56:18 -05:00
m.Dxf = NewCT_Dxf()
if err := d.DecodeElement(m.Dxf, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "extLst"},
xml.Name{Space: "http://purl.oclc.org/ooxml/spreadsheetml/main", Local: "extLst"}:
2017-08-28 20:56:18 -05:00
m.ExtLst = NewCT_ExtensionList()
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
return err
}
default:
unioffice.Log("skipping unsupported element on CT_RevisionFormatting %v", el.Name)
2017-08-28 20:56:18 -05:00
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_RevisionFormatting
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_RevisionFormatting and its children
2017-08-28 20:56:18 -05:00
func (m *CT_RevisionFormatting) Validate() error {
return m.ValidateWithPath("CT_RevisionFormatting")
}
// ValidateWithPath validates the CT_RevisionFormatting and its children, prefixing error messages with path
2017-08-28 20:56:18 -05:00
func (m *CT_RevisionFormatting) ValidateWithPath(path string) error {
if m.Dxf != nil {
if err := m.Dxf.ValidateWithPath(path + "/Dxf"); err != nil {
return err
}
}
if m.ExtLst != nil {
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
return err
}
}
return nil
}