mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-12 19:29:34 +08:00

* update license and terms * Fixes * Create ACKNOWLEDGEMENTS.md * Update ACKNOWLEDGEMENTS.md * Revert go.mod changes and remove go1.11 tests
81 lines
2.1 KiB
Go
81 lines
2.1 KiB
Go
// Copyright 2020 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by unioffice ECMA-376 generator
|
|
//
|
|
// Use of this software package and source code is governed by the terms of the
|
|
// UniDoc End User License Agreement (EULA) that is available at:
|
|
// https://unidoc.io/eula/
|
|
// A trial license code for evaluation can be obtained at https://unidoc.io website.
|
|
|
|
package chart
|
|
|
|
import (
|
|
"encoding/xml"
|
|
|
|
"github.com/unidoc/unioffice"
|
|
"github.com/unidoc/unioffice/schema/soo/dml"
|
|
)
|
|
|
|
type EG_LegendEntryData struct {
|
|
TxPr *dml.CT_TextBody
|
|
}
|
|
|
|
func NewEG_LegendEntryData() *EG_LegendEntryData {
|
|
ret := &EG_LegendEntryData{}
|
|
return ret
|
|
}
|
|
|
|
func (m *EG_LegendEntryData) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.TxPr != nil {
|
|
setxPr := xml.StartElement{Name: xml.Name{Local: "c:txPr"}}
|
|
e.EncodeElement(m.TxPr, setxPr)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *EG_LegendEntryData) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lEG_LegendEntryData:
|
|
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/drawingml/2006/chart", Local: "txPr"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "txPr"}:
|
|
m.TxPr = dml.NewCT_TextBody()
|
|
if err := d.DecodeElement(m.TxPr, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
unioffice.Log("skipping unsupported element on EG_LegendEntryData %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lEG_LegendEntryData
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the EG_LegendEntryData and its children
|
|
func (m *EG_LegendEntryData) Validate() error {
|
|
return m.ValidateWithPath("EG_LegendEntryData")
|
|
}
|
|
|
|
// ValidateWithPath validates the EG_LegendEntryData and its children, prefixing error messages with path
|
|
func (m *EG_LegendEntryData) ValidateWithPath(path string) error {
|
|
if m.TxPr != nil {
|
|
if err := m.TxPr.ValidateWithPath(path + "/TxPr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|