diff options
author | xuri <xuri.me@gmail.com> | 2019-09-16 01:17:35 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-09-16 01:17:35 +0800 |
commit | 8922f659788187afa6d0a5d3248e999c2c1bb846 (patch) | |
tree | 29b2aae2028eaedc448daef08a5670d6f3ca4604 /xmlDrawing.go | |
parent | a3ee098ab60d9528a0d6b7a7c475ea8ff7ebaba5 (diff) |
Combine functions:
workBookRelsWriter, drawingRelsWriter into relsWriter;
drawingRelsReader, workbookRelsReader, workSheetRelsReader into relsReader;
addDrawingRelationships, addSheetRelationships into addRels
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index ade6261..4338c5e 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -22,6 +22,8 @@ const ( SourceRelationshipDrawingVML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing" SourceRelationshipHyperLink = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" SourceRelationshipWorkSheet = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" + SourceRelationshipPivotTable = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotTable" + SourceRelationshipPivotCache = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotCacheDefinition" SourceRelationshipVBAProject = "http://schemas.microsoft.com/office/2006/relationships/vbaProject" SourceRelationshipChart201506 = "http://schemas.microsoft.com/office/drawing/2015/06/chart" SourceRelationshipChart20070802 = "http://schemas.microsoft.com/office/drawing/2007/8/2/chart" |