From f389f174481df676c841ebcc87a7b8b313921bbc Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 17 Sep 2018 16:11:31 +0530 Subject: add importset and getContainer to combined.js --- js/Misc/TEXT_f.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'js/Misc/TEXT_f.js') diff --git a/js/Misc/TEXT_f.js b/js/Misc/TEXT_f.js index a190b625..87fd28ac 100644 --- a/js/Misc/TEXT_f.js +++ b/js/Misc/TEXT_f.js @@ -84,4 +84,12 @@ function TEXT_f() { TEXT_f.prototype.get_popup_title = function TEXT_f() { return this.set_param_popup_title; } + TEXT_f.prototype.importset = function TEXT_f() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.txt = ary[0]; + this.font = ary[1]; + this.siz = ary[2]; + } + TEXT_f.prototype.getContainer = function TEXT_f() { return new TextBlock(this.x); } } -- cgit