Commit d5877433 authored by Ilya Kirillov's avatar Ilya Kirillov

Functions for begin/end view mode in review were made in API.

parent da8609e8
...@@ -7701,6 +7701,15 @@ background-repeat: no-repeat;\ ...@@ -7701,6 +7701,15 @@ background-repeat: no-repeat;\
return null; return null;
}; };
asc_docs_api.prototype.asc_BeginViewModeInReview = function(isFinal)
{
this.WordControl.m_oLogicDocument.BeginViewModeInReview(isFinal);
};
asc_docs_api.prototype.asc_EndViewModeInReview = function()
{
this.WordControl.m_oLogicDocument.EndViewModeInReview();
};
// input // input
asc_docs_api.prototype.Begin_CompositeInput = function() asc_docs_api.prototype.Begin_CompositeInput = function()
{ {
......
...@@ -1508,7 +1508,7 @@ ...@@ -1508,7 +1508,7 @@
/** /**
* Insert watermark on each page of document * Insert watermark on each page of document
* @param {?string} } [sText="WATERMARK"] * @param {?string} [sText="WATERMARK"]
* @param {?boolean} [bIsDiagonal=true] * @param {?boolean} [bIsDiagonal=true]
*/ */
ApiDocument.prototype.InsertWatermark = function(sText, bIsDiagonal){ ApiDocument.prototype.InsertWatermark = function(sText, bIsDiagonal){
......
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