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

MultiplyTargetTransform

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68234 954022d7-b5bf-4e40-9824-e11837661b57
parent d70dcf31
......@@ -3471,6 +3471,16 @@ function CDrawingDocument()
this.TextMatrix = matrix;
}
this.MultiplyTargetTransform = function(matrix)
{
if (!this.TextMatrix)
this.TextMatrix = matrix;
else if (matrix)
{
this.TextMatrix.Multiply(matrix, MATRIX_ORDER_APPEND);
}
}
this.UpdateTarget = function(x, y, pageIndex)
{
this.m_oWordControl.m_oLogicDocument.Set_TargetPos( 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