Commit 1d6f2317 authored by GoshaZotov's avatar GoshaZotov

add altText / altTextSummary into TablePart class

parent a5c23ef6
...@@ -5717,6 +5717,9 @@ function TablePart(handlers) { ...@@ -5717,6 +5717,9 @@ function TablePart(handlers) {
this.TableColumns = null; this.TableColumns = null;
this.TableStyleInfo = null; this.TableStyleInfo = null;
this.altText = null;
this.altTextSummary = null;
this.result = null; this.result = null;
this.handlers = handlers; this.handlers = handlers;
} }
...@@ -5743,6 +5746,10 @@ TablePart.prototype.clone = function() { ...@@ -5743,6 +5746,10 @@ TablePart.prototype.clone = function() {
res.result.push(this.result[i].clone()); res.result.push(this.result[i].clone());
} }
res.DisplayName = this.DisplayName; res.DisplayName = this.DisplayName;
res.altText = this.altText;
res.altTextSummary = this.altTextSummary;
return res; return res;
}; };
TablePart.prototype.renameSheetCopy = function(ws, renameParams) { TablePart.prototype.renameSheetCopy = function(ws, renameParams) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment