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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49860 954022d7-b5bf-4e40-9824-e11837661b57
parent 22c1949f
......@@ -1460,6 +1460,17 @@ WordGroupShapes.prototype =
}
},
Search : function(Str, Props, SearchEngine, Type)
{
for(var i = 0; i < this.spTree.length; ++i)
{
if(typeof this.spTree[i].Search === "function")
{
this.spTree[i].Search(Str, Props, SearchEngine, Type);
}
}
},
fromArrayGraphicObjects: function(arrGrObj)
{
for(var i = 0; i < arrGrObj.length; ++i)
......
......@@ -499,6 +499,14 @@ WordShape.prototype =
this.textBoxContent.Set_ParagraphStyle(style);
},
Search : function(Str, Props, SearchEngine, Type)
{
if(isRealObject(this.textBoxContent))
{
this.textBoxContent.Search(Str, Props, SearchEngine, Type)
}
},
Get_PageContentStartPos: function(pageNum)
{
if(this.textBoxContent)
......
......@@ -3677,7 +3677,10 @@ ParaDrawing.prototype =
Search : function(Str, Props, SearchEngine, Type)
{
if(isRealObject(this.GraphicObj) && typeof this.GraphicObj.Search === "function")
{
this.GraphicObj.Search(Str, Props, SearchEngine, Type)
}
},
Set_Props : function(Props)
......
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