diff --git a/source/lib/drawing/picture.js b/source/lib/drawing/picture.js index c4db604..02a2c58 100644 --- a/source/lib/drawing/picture.js +++ b/source/lib/drawing/picture.js @@ -55,6 +55,7 @@ class Picture extends Drawing { this._descr = null; this._title = null; this._id; + this._rId; // picLocks ยง20.1.2.2.31 picLocks (Picture Locks) this.noGrp; this.noSelect; @@ -89,7 +90,10 @@ class Picture extends Drawing { } get rId() { - return 'rId' + this._id; + return this._rId; + } + set rId(rId) { + this._rId = 'rId' + rId; } get description() { @@ -198,4 +202,4 @@ class Picture extends Drawing { } } -module.exports = Picture; \ No newline at end of file +module.exports = Picture;