Commit a8c7d897 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Добавил возможность удаления комментариев. Опция c_oAscCleanOptions.Comments...

Добавил возможность удаления комментариев. Опция c_oAscCleanOptions.Comments для метода asc_emptyCells
Баг http://bugzserver/show_bug.cgi?id=24303

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58413 954022d7-b5bf-4e40-9824-e11837661b57
parent 1b934c45
......@@ -160,7 +160,8 @@ var c_oAscCleanOptions = {
All : 0,
Text : 1,
Format : 2,
Formula : 4
Formula : 4,
Comments: 5
};
var c_oAscDrawDepOptions = {
......
......@@ -7953,6 +7953,8 @@
range.cleanText();
else if (val & c_oAscCleanOptions.Format)
range.cleanFormat();
else if (val & c_oAscCleanOptions.Comments)
t.cellCommentator.deleteCommentsRange(arn);
// Если нужно удалить автофильтры - удаляем
t.autoFilters.isEmptyAutoFilters(arn);
......
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