summaryrefslogtreecommitdiff
path: root/xmlDrawing.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-01-18 14:47:23 +0800
committerRi Xu <xuri.me@gmail.com>2017-01-18 14:47:23 +0800
commitf05df2a0182ee5761f5fbe7e56020313a0ab0b61 (patch)
tree7aaf5365c9082931f9d4cdd080ff2932918164fb /xmlDrawing.go
parenta99f0227b085d8f417f77864941650ef0e6273e4 (diff)
- New function `SetSheetName` and `SetColWidth` added, support rename sheet and set column width;
- Add escape characters of sheet name; - Update go test and fix typo
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r--xmlDrawing.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go
index 75f6c03..b0f1f46 100644
--- a/xmlDrawing.go
+++ b/xmlDrawing.go
@@ -5,6 +5,7 @@ const (
SourceRelationship = "http://schemas.openxmlformats.org/officeDocument/2006/relationships"
SourceRelationshipImage = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"
SourceRelationshipDrawingML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing"
+ SourceRelationshipWorkSheet = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet"
NameSpaceDrawingML = "http://schemas.openxmlformats.org/drawingml/2006/main"
NameSpaceSpreadSheetDrawing = "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"
)