Commit 511b9bee authored by Ilya Kirillov's avatar Ilya Kirillov

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

parent e3da22fe
......@@ -7690,6 +7690,15 @@ background-repeat: no-repeat;\
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
asc_docs_api.prototype.Begin_CompositeInput = function()
{
......
......@@ -1508,7 +1508,7 @@
/**
* Insert watermark on each page of document
* @param {?string} } [sText="WATERMARK"]
* @param {?string} [sText="WATERMARK"]
* @param {?boolean} [bIsDiagonal=true]
*/
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