// 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 spreadsheetml import ( "encoding/xml" "fmt" "strconv" ) type CT_PrintOptions struct { // Horizontal Centered HorizontalCenteredAttr *bool // Vertical Centered VerticalCenteredAttr *bool // Print Headings HeadingsAttr *bool // Print Grid Lines GridLinesAttr *bool // Grid Lines Set GridLinesSetAttr *bool } func NewCT_PrintOptions() *CT_PrintOptions { ret := &CT_PrintOptions{} return ret } func (m *CT_PrintOptions) MarshalXML(e *xml.Encoder, start xml.StartElement) error { if m == nil { return nil } if m.HorizontalCenteredAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "horizontalCentered"}, Value: fmt.Sprintf("%v", *m.HorizontalCenteredAttr)}) } if m.VerticalCenteredAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "verticalCentered"}, Value: fmt.Sprintf("%v", *m.VerticalCenteredAttr)}) } if m.HeadingsAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "headings"}, Value: fmt.Sprintf("%v", *m.HeadingsAttr)}) } if m.GridLinesAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "gridLines"}, Value: fmt.Sprintf("%v", *m.GridLinesAttr)}) } if m.GridLinesSetAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "gridLinesSet"}, Value: fmt.Sprintf("%v", *m.GridLinesSetAttr)}) } e.EncodeToken(start) start.Attr = nil e.EncodeToken(xml.EndElement{Name: start.Name}) return nil } func (m *CT_PrintOptions) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default for _, attr := range start.Attr { if attr.Name.Local == "horizontalCentered" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.HorizontalCenteredAttr = &parsed } if attr.Name.Local == "verticalCentered" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.VerticalCenteredAttr = &parsed } if attr.Name.Local == "headings" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.HeadingsAttr = &parsed } if attr.Name.Local == "gridLines" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.GridLinesAttr = &parsed } if attr.Name.Local == "gridLinesSet" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.GridLinesSetAttr = &parsed } } // skip any extensions we may find, but don't support for { tok, err := d.Token() if err != nil { return fmt.Errorf("parsing CT_PrintOptions: %s", err) } if el, ok := tok.(xml.EndElement); ok && el.Name == start.Name { break } } return nil } func (m *CT_PrintOptions) Validate() error { return m.ValidateWithPath("CT_PrintOptions") } func (m *CT_PrintOptions) ValidateWithPath(path string) error { return nil }