Commit 5fc7f62e authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55088 954022d7-b5bf-4e40-9824-e11837661b57
parent 4e3c9fb7
......@@ -293,6 +293,30 @@ CDrawingDocument.prototype =
this.Native["DD_Set_RulerState_HdrFtr"](bHeader, Y0, Y1);
},
Update_ParaInd : function( Ind )
{
var FirstLine = 0,
Left = 0,
Right = 0;
if ( "undefined" != typeof(Ind) )
{
if("undefined" != typeof(Ind.FirstLine))
{
FirstLine = Ind.FirstLine;
}
if("undefined" != typeof(Ind.Left))
{
Left = Ind.Left;
}
if("undefined" != typeof(Ind.Right))
{
Right = Ind.Right;
}
}
this.Native["DD_Update_ParaInd"](FirstLine, Left, Right);
},
Update_ParaTab : function(Default_Tab, ParaTabs)
{
var _arr_pos = [];
......
asc_docs_api.prototype.Update_ParaInd = function( Ind )
{
this.WordControl.m_oDrawingDocument.Update_ParaInd(Ind);
};
asc_docs_api.prototype.Internal_Update_Ind_Left = function(Left)
......
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