Commit 9e87f970 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

checkTextObject

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56134 954022d7-b5bf-4e40-9824-e11837661b57
parent 97892db0
......@@ -1353,6 +1353,22 @@ CGraphicObjects.prototype =
return false;
},
checkTextObject: function(x, y, pageIndex)
{
var text_object = getTargetTextObject(this);
if(text_object && text_object.hitInTextRect)
{
if(text_object.selectStartPage === pageIndex)
{
if(text_object.hitInTextRect(x, y))
{
return true;
}
}
}
return false;
},
getParagraphParaPrCopy: function()
{
return this.getParagraphParaPr();
......
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