Commit 501af2b9 authored by Sergey Luzyanin's avatar Sergey Luzyanin

isPointInDrawingObjects3

parent 9a02aa68
......@@ -2867,6 +2867,15 @@ CGraphicObjects.prototype =
return this.isPointInDrawingObjects(x, y, pageIndex, bSelected, true) > -1;
},
isPointInDrawingObjects3: function(x, y, pageIndex, bSelected)
{
var oOldState = this.curState;
this.changeCurrentState(new AscFormat.NullState(this));
var bRet = this.isPointInDrawingObjects(x, y, pageIndex, bSelected, true) > -1;
this.changeCurrentState(oOldState);
return bRet;
},
pointInObjInDocContent: function( docContent, X, Y, pageIndex )
{
......
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