diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-01-18 16:05:01 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-01-18 16:05:01 +0800 |
commit | 52796f6e58e95145e2964d0d313a2f721dcc040e (patch) | |
tree | 721e818837035953828c75e102aa7dede7f91492 /xmlDecodeDrawing.go | |
parent | f05df2a0182ee5761f5fbe7e56020313a0ab0b61 (diff) |
Format commants, break comments after 80 characters.
Diffstat (limited to 'xmlDecodeDrawing.go')
-rw-r--r-- | xmlDecodeDrawing.go | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/xmlDecodeDrawing.go b/xmlDecodeDrawing.go index 7965a14..136975e 100644 --- a/xmlDecodeDrawing.go +++ b/xmlDecodeDrawing.go @@ -2,17 +2,19 @@ package excelize import "encoding/xml" -// decodeTwoCellAnchor directly maps the twoCellAnchor (Two Cell Anchor Shape Size). This element -// specifies a two cell anchor placeholder for a group, a shape, or a drawing element. It moves -// with cells and its extents are in EMU units. +// decodeTwoCellAnchor directly maps the twoCellAnchor (Two Cell Anchor Shape +// Size). This element specifies a two cell anchor placeholder for a group, a +// shape, or a drawing element. It moves with cells and its extents are in EMU +// units. type decodeTwoCellAnchor struct { EditAs string `xml:"editAs,attr,omitempty"` Content string `xml:",innerxml"` } -// decodeWsDr directly maps the root element for a part of this content type shall wsDr. -// In order to solve the problem that the label structure is changed after serialization -// and deserialization, two different structures are defined. decodeWsDr just for deserialization. +// decodeWsDr directly maps the root element for a part of this content type +// shall wsDr. In order to solve the problem that the label structure is changed +// after serialization and deserialization, two different structures are +// defined. decodeWsDr just for deserialization. type decodeWsDr struct { A string `xml:"xmlns a,attr"` Xdr string `xml:"xmlns xdr,attr"` |